X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_squit.cpp;h=94e7c148b502f092490d08c60e01c3a902e0ed9b;hb=316e19f10c1d30215a2617f44ca61f8d6d2559a8;hp=57105109b270cc7622a272b96360b9cbed22d148;hpb=11554b8626d8b421cc9cf2c6f6cc3fe2467e0441;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_squit.cpp b/src/cmd_squit.cpp index 57105109b..94e7c148b 100644 --- a/src/cmd_squit.cpp +++ b/src/cmd_squit.cpp @@ -12,7 +12,6 @@ */ #include "inspircd.h" -#include "users.h" #include "commands/cmd_squit.h" /* @@ -27,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; }