]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_check.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_check.cpp
index 692a7113a0a9c9f44e2f35d3703a2b54f20fcf3a..4f153d4960c87c68bf641225c6efc6fb8e66bcf0 100644 (file)
@@ -19,25 +19,23 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "commands.h"
 #include "inspircd.h"
-#include "helperfuncs.h"
 #include "wildcard.h"
 
 /* $ModDesc: Provides the /check command to retrieve information on a user, channel, or IP address */
 
-extern InspIRCd* ServerInstance;
+
 
 class cmd_check : public command_t
 {
  public:
-       cmd_check() : command_t("CHECK", 'o', 1)
+       cmd_check (InspIRCd* Instance) : command_t(Instance,"CHECK", 'o', 1)
        {
                this->source = "m_check.so";
                syntax = "<nickname>|<ip>|<hostmask>|<channel>";
        }
 
-       void Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
        {
                userrec *targuser;
                chanrec *targchan;
@@ -177,6 +175,8 @@ class cmd_check : public command_t
                }
 
                user->WriteServ(checkstr + " END " + std::string(parameters[0]));
+
+               return CMD_SUCCESS;
        }
 };
 
@@ -189,7 +189,7 @@ class ModuleCheck : public Module
        ModuleCheck(InspIRCd* Me) : Module::Module(Me)
        {
                
-               mycommand = new cmd_check();
+               mycommand = new cmd_check(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }