]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_testcommand.cpp
Made SANICK not collide the user (theres no need to in the new 1.1 now we have return...
[user/henk/code/inspircd.git] / src / modules / m_testcommand.cpp
index 61effc3de15a209b4adc3cdbca2644b37f324728..bc268c34b86307bf965552ba4d138ac72d0fc9dd 100644 (file)
@@ -20,7 +20,7 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "dns.h"
 #include "inspircd.h"
 
@@ -53,12 +53,12 @@ class MyV6Resolver : public Resolver
 class cmd_woot : public command_t
 {
  public:
- cmd_woot (InspIRCd* Instance) : command_t(Instance,"WOOT", 0, 0)
      cmd_woot (InspIRCd* Instance) : command_t(Instance,"WOOT", 0, 0)
        {
                this->source = "m_testcommand.so";
        }
 
-       void Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
        {
                /* We dont have to worry about deleting 'r', the core will
                 * do it for us as required.*/
@@ -74,6 +74,8 @@ class cmd_woot : public command_t
                {
                        ServerInstance->Log(DEBUG,"Danger, will robinson! There was an exception: %s",e.GetReason());
                }
+
+               return CMD_FAILURE;
        }
 };
 
@@ -110,7 +112,7 @@ class ModuleTestCommand : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
+               return Version(1, 0, 0, 0, VF_VENDOR);
        }
 };