]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_squit.cpp
If the user's nick is just a case change, the TS is NOT updated (thanks jilles)
[user/henk/code/inspircd.git] / src / cmd_squit.cpp
index 3ddb601613bd6949628f92a7ed53352bb328af2f..94e7c148b502f092490d08c60e01c3a902e0ed9b 100644 (file)
@@ -11,7 +11,7 @@
  * ---------------------------------------------------
  */
 
-#include "users.h"
+#include "inspircd.h"
 #include "commands/cmd_squit.h"
 
 /*
@@ -26,6 +26,6 @@ extern "C" DllExport command_t* init_command(InspIRCd* Instance)
 
 CmdResult cmd_squit::Handle (const char** parameters, int pcnt, userrec *user)
 {
-       user->WriteServ( "NOTICE %s :You are a nub. Load a linking module.", user->nick);
+       user->WriteServ( "NOTICE %s :Look into loading a linking module (like m_spanningtree) if you want this to do anything useful.", user->nick);
        return CMD_FAILURE;
 }