X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_devoice.cpp;h=64c341ad6acfe8fc2b314f7b2918650ff26c4fbb;hb=2b3394855d5adddb16285b905503d9ffe5a1d963;hp=8960995e86dff246af6a1604753b8980fcec285d;hpb=7e03ab8b2a58f314267c9dc695d49f8d24a65685;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_devoice.cpp b/src/modules/m_devoice.cpp index 8960995e8..64c341ad6 100644 --- a/src/modules/m_devoice.cpp +++ b/src/modules/m_devoice.cpp @@ -18,10 +18,6 @@ /* $ModDesc: Provides voiced users with the ability to devoice themselves. */ -#include -#include "users.h" -#include "channels.h" -#include "modules.h" #include "inspircd.h" /** Handle /DEVOICE @@ -33,6 +29,7 @@ class cmd_devoice : public command_t { this->source = "m_devoice.so"; syntax = ""; + TRANSLATE2(TR_TEXT, TR_END); } CmdResult Handle (const char** parameters, int pcnt, userrec *user) @@ -50,6 +47,7 @@ class cmd_devoice : public command_t ServerInstance->SendMode(modes,3,n); delete n; + /* route it -- SendMode doesn't distribute over the whole network */ return CMD_SUCCESS; } @@ -61,7 +59,7 @@ class ModuleDeVoice : public Module { cmd_devoice *mycommand; public: - ModuleDeVoice(InspIRCd* Me) : Module::Module(Me) + ModuleDeVoice(InspIRCd* Me) : Module(Me) { mycommand = new cmd_devoice(ServerInstance); @@ -74,31 +72,8 @@ class ModuleDeVoice : public Module virtual Version GetVersion() { - return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); + return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION); } }; - -class ModuleDeVoiceFactory : public ModuleFactory -{ - public: - ModuleDeVoiceFactory() - { - } - - ~ModuleDeVoiceFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleDeVoice(Me); - } - -}; - - -extern "C" void * init_module( void ) -{ - return new ModuleDeVoiceFactory; -} +MODULE_INIT(ModuleDeVoice)