]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_devoice.cpp
No idea why this wasn't using MODULE_INIT. Thanks Om.
[user/henk/code/inspircd.git] / src / modules / m_devoice.cpp
index 9f7f211e88d00f2f8ebafcefcf8e1a31ead8f47f..f2c47cc9afe22e27e2990b17edf631314489101b 100644 (file)
 
 /* $ModDesc: Provides voiced users with the ability to devoice themselves. */
 
-#include <stdio.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 #include "inspircd.h"
 
 /** Handle /DEVOICE
- */     
+ */
 class cmd_devoice : public command_t
 {
  public:
@@ -33,6 +29,7 @@ class cmd_devoice : public command_t
        {
                this->source = "m_devoice.so";
                syntax = "<channel>";
+               TRANSLATE2(TR_TEXT, TR_END);
        }
 
        CmdResult Handle (const char** parameters, int pcnt, userrec *user)
@@ -45,8 +42,9 @@ class cmd_devoice : public command_t
                        modes[1] = "-v";
                        modes[2] = user->nick;
 
-                       ServerInstance->SendMode(modes,3,user);
+                       ServerInstance->SendMode(modes, 3, ServerInstance->FakeClient);
 
+                       /* route it -- SendMode doesn't distribute over the whole network */
                        return CMD_SUCCESS;
                }
 
@@ -58,44 +56,21 @@ 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, 1, 0, 0, VF_VENDOR, API_VERSION);
-       }
-};
 
-
-class ModuleDeVoiceFactory : public ModuleFactory
-{
- public:
-       ModuleDeVoiceFactory()
-       {
-       }
-       
-       ~ModuleDeVoiceFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
+       virtual Version GetVersion()
        {
-               return new ModuleDeVoice(Me);
+               return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
        }
-       
 };
 
-
-extern "C" void * init_module( void )
-{
-       return new ModuleDeVoiceFactory;
-}
+MODULE_INIT(ModuleDeVoice)