X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_squit.cpp;h=94e7c148b502f092490d08c60e01c3a902e0ed9b;hb=316e19f10c1d30215a2617f44ca61f8d6d2559a8;hp=3ddb601613bd6949628f92a7ed53352bb328af2f;hpb=9cf56d917d92959701694477f7944d45ad2c38ed;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_squit.cpp b/src/cmd_squit.cpp index 3ddb60161..94e7c148b 100644 --- a/src/cmd_squit.cpp +++ b/src/cmd_squit.cpp @@ -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; }