diff options
Diffstat (limited to 'src/modules/m_restrictmsg.cpp')
-rw-r--r-- | src/modules/m_restrictmsg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_restrictmsg.cpp b/src/modules/m_restrictmsg.cpp index 75ffc46fd..d8c54d30a 100644 --- a/src/modules/m_restrictmsg.cpp +++ b/src/modules/m_restrictmsg.cpp @@ -33,10 +33,10 @@ class ModuleRestrictMsg : public Module Server *Srv; public: - ModuleRestrictMsg(Server* Me) + ModuleRestrictMsg(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; + } void Implements(char* List) @@ -92,7 +92,7 @@ class ModuleRestrictMsgFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleRestrictMsg(Me); } |