From 2d821f2980825be73e3f90b47ffff365b0ec5ecb Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 7 Dec 2005 17:05:34 +0000 Subject: 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 --- src/modules/m_blockcolor.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/modules/m_blockcolor.cpp') diff --git a/src/modules/m_blockcolor.cpp b/src/modules/m_blockcolor.cpp index 13663cc40..f63caf6c5 100644 --- a/src/modules/m_blockcolor.cpp +++ b/src/modules/m_blockcolor.cpp @@ -30,9 +30,10 @@ class ModuleBlockColor : public Module Server *Srv; public: - ModuleBlockColor() + ModuleBlockColor(Server* Me) + : Module::Module(Me) { - Srv = new Server; + Srv = Me; Srv->AddExtendedMode('c',MT_CHANNEL,false,0,0); } @@ -110,7 +111,6 @@ class ModuleBlockColor : public Module virtual ~ModuleBlockColor() { - delete Srv; } virtual Version GetVersion() @@ -131,9 +131,9 @@ class ModuleBlockColorFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleBlockColor; + return new ModuleBlockColor(Me); } }; -- cgit v1.2.3