]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_squit.cpp
Whoops, make /stats s work
[user/henk/code/inspircd.git] / src / cmd_squit.cpp
index 08dee1188fe292464c04180804ab8ddcd75af8ce..fa3aadc789556329dab76e38450f7f694586dbe8 100644 (file)
  */
 
 #include "users.h"
-#include "commands.h"
-#include "helperfuncs.h"
 #include "commands/cmd_squit.h"
 
 /*
  * This is handled by the server linking module, if necessary. Do not remove this stub.
  */
-void cmd_squit::Handle (const char** parameters, int pcnt, userrec *user)
+
+
+extern "C" command_t* init_command(InspIRCd* Instance)
+{
+       return new cmd_squit(Instance);
+}
+
+CmdResult cmd_squit::Handle (const char** parameters, int pcnt, userrec *user)
 {
-       WriteServ(user->fd, "NOTICE %s :You are a nub. Load a linking module.", user->nick);
+       user->WriteServ( "NOTICE %s :You are a nub. Load a linking module.", user->nick);
+       return CMD_FAILURE;
 }