diff options
| author | 2005-12-07 17:05:34 +0000 | |
|---|---|---|
| committer | 2005-12-07 17:05:34 +0000 | |
| commit | 2d821f2980825be73e3f90b47ffff365b0ec5ecb (patch) | |
| tree | 5063e20e64555f26c357ccae5ab99e54e899c69d /src/modules/m_restrictmsg.cpp | |
| parent | Added insane tag (prevents wide gline etc) (diff) | |
Changed behaviour of module API to pass Server* to the constructor, rather than have to create one (makes more sense)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2252 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_restrictmsg.cpp')
| -rw-r--r-- | src/modules/m_restrictmsg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/m_restrictmsg.cpp b/src/modules/m_restrictmsg.cpp index d73b4047d..5043b3f8d 100644 --- a/src/modules/m_restrictmsg.cpp +++ b/src/modules/m_restrictmsg.cpp @@ -32,9 +32,10 @@ class ModuleRestrictMsg : public Module Server *Srv; public: - ModuleRestrictMsg() + ModuleRestrictMsg(Server* Me) + : Module::Module(Me) { - Srv = new Server; + Srv = Me; } virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) @@ -65,7 +66,6 @@ class ModuleRestrictMsg : public Module virtual ~ModuleRestrictMsg() { - delete Srv; } virtual Version GetVersion() @@ -86,9 +86,9 @@ class ModuleRestrictMsgFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleRestrictMsg; + return new ModuleRestrictMsg(Me); } }; |
