]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_connect.cpp
Changed m_messageflood to use PreMessage and PreNotice, because it may kick the user
[user/henk/code/inspircd.git] / src / cmd_connect.cpp
index 1a04e77131150608f9ba43949e8f25855d99dff6..c744166bf1b1d10e7292b3676a69da2765156b16 100644 (file)
@@ -11,6 +11,7 @@
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include "users.h"
 #include "commands/cmd_connect.h"
 
@@ -27,6 +28,6 @@ extern "C" DllExport command_t* init_command(InspIRCd* Instance)
  */
 CmdResult cmd_connect::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_SUCCESS;
 }