From b37a253d962ed7af1ea7a328abf2a1af74f30759 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 10 Aug 2006 23:19:43 +0000 Subject: Note: FOR THE MOMENT, this is BROKEN. It wont run right until im done. Changed Parameter for modules from Server* to InspIRCd*. TODO: Move remaining Server* Modules into InspIRCd* and remove class Server. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4859 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_devoice.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules/m_devoice.cpp') diff --git a/src/modules/m_devoice.cpp b/src/modules/m_devoice.cpp index 54a08ab98..b2c411e74 100644 --- a/src/modules/m_devoice.cpp +++ b/src/modules/m_devoice.cpp @@ -60,9 +60,9 @@ class ModuleDeVoice : public Module { cmd_devoice *mycommand; public: - ModuleDeVoice(Server* Me) : Module::Module(Me) + ModuleDeVoice(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; + mycommand = new cmd_devoice(); Srv->AddCommand(mycommand); } @@ -89,7 +89,7 @@ class ModuleDeVoiceFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleDeVoice(Me); } -- cgit v1.3.1-10-gc9f91