diff options
Diffstat (limited to 'src/modules/m_watch.cpp')
-rw-r--r-- | src/modules/m_watch.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_watch.cpp b/src/modules/m_watch.cpp index 8e6b2c50c..b352162a6 100644 --- a/src/modules/m_watch.cpp +++ b/src/modules/m_watch.cpp @@ -202,10 +202,10 @@ class Modulewatch : public Module cmd_watch* mycommand; public: - Modulewatch(Server* Me) + Modulewatch(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; + mycommand = new cmd_watch(); Srv->AddCommand(mycommand); } @@ -315,7 +315,7 @@ class ModulewatchFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new Modulewatch(Me); } |