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_noinvite.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/modules/m_noinvite.cpp') diff --git a/src/modules/m_noinvite.cpp b/src/modules/m_noinvite.cpp index 313d8eefa..476dbea1e 100644 --- a/src/modules/m_noinvite.cpp +++ b/src/modules/m_noinvite.cpp @@ -3,13 +3,13 @@ * +------------------------------------+ * * Inspire is copyright (C) 2002-2004 ChatSpike-Dev. - * E-mail: - * - * + * E-mail: + * + * * * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see - *the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ @@ -30,9 +30,10 @@ class ModuleNoInvite : public Module public: - ModuleNoInvite() + ModuleNoInvite(Server* Me) + : Module::Module(Me) { - Srv = new Server; + Srv = Me; Srv->AddExtendedMode('V',MT_CHANNEL,false,0,0); } @@ -82,7 +83,6 @@ class ModuleNoInvite : public Module virtual ~ModuleNoInvite() { - delete Srv; } virtual Version GetVersion() @@ -103,9 +103,9 @@ class ModuleNoInviteFactory : public ModuleFactory { } - virtual Module * CreateModule() + virtual Module * CreateModule(Server* Me) { - return new ModuleNoInvite; + return new ModuleNoInvite(Me); } }; -- cgit v1.3.1-10-gc9f91