X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_devoice.cpp;h=37ad8e4c646cac0cab0208393e29d7ab763adf8d;hb=52acbb466b84a1cd161b1c111f855d6f0419fff3;hp=2c652d20b7b81cb204096583138b6a03ce6aac7c;hpb=4b0f6c610f755e0cb93843d5a2a6c70336eafe39;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_devoice.cpp b/src/modules/m_devoice.cpp index 2c652d20b..37ad8e4c6 100644 --- a/src/modules/m_devoice.cpp +++ b/src/modules/m_devoice.cpp @@ -2,20 +2,15 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - /* * DEVOICE module for InspIRCd * Syntax: /DEVOICE <#chan> @@ -23,14 +18,13 @@ using namespace std; /* $ModDesc: Provides voiced users with the ability to devoice themselves. */ -#include +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "inspircd.h" /** Handle /DEVOICE - */ + */ class cmd_devoice : public command_t { public: @@ -50,8 +44,12 @@ class cmd_devoice : public command_t modes[1] = "-v"; modes[2] = user->nick; - ServerInstance->SendMode(modes,3,user); + userrec* n = new userrec(ServerInstance); + n->SetFd(FD_MAGIC_NUMBER); + ServerInstance->SendMode(modes,3,n); + delete n; + /* route it */ return CMD_SUCCESS; } @@ -63,20 +61,20 @@ class ModuleDeVoice : public Module { cmd_devoice *mycommand; public: - ModuleDeVoice(InspIRCd* Me) : Module::Module(Me) + ModuleDeVoice(InspIRCd* Me) : Module(Me) { - + mycommand = new cmd_devoice(ServerInstance); ServerInstance->AddCommand(mycommand); } - + virtual ~ModuleDeVoice() { } - + virtual Version GetVersion() { - return Version(1, 0, 0, 0, VF_VENDOR, API_VERSION); + return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); } }; @@ -87,20 +85,20 @@ class ModuleDeVoiceFactory : public ModuleFactory ModuleDeVoiceFactory() { } - + ~ModuleDeVoiceFactory() { } - + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleDeVoice(Me); } - + }; -extern "C" void * init_module( void ) +extern "C" DllExport void * init_module( void ) { return new ModuleDeVoiceFactory; }