]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_devoice.cpp
and a little tweak to remote MOTD too.
[user/henk/code/inspircd.git] / src / modules / m_devoice.cpp
index 9f7f211e88d00f2f8ebafcefcf8e1a31ead8f47f..37ad8e4c646cac0cab0208393e29d7ab763adf8d 100644 (file)
 
 /* $ModDesc: Provides voiced users with the ability to devoice themselves. */
 
-#include <stdio.h>
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "inspircd.h"
 
 /** Handle /DEVOICE
- */     
+ */
 class cmd_devoice : public command_t
 {
  public:
@@ -45,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;
                }
 
@@ -58,17 +61,17 @@ 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);
@@ -82,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;
 }