]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Make these notices a little more helpful
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 23 Jul 2007 18:04:57 +0000 (18:04 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 23 Jul 2007 18:04:57 +0000 (18:04 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7505 e03df62e-2008-0410-955e-edbf42e46eb7

src/cmd_connect.cpp
src/cmd_squit.cpp

index fc3ae9d7a36a1b5d68ab37493b4cca79a19c4f9b..c744166bf1b1d10e7292b3676a69da2765156b16 100644 (file)
@@ -28,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;
 }
index 57105109b270cc7622a272b96360b9cbed22d148..49360d84fe3208187e521ac80310b12816ac5a8e 100644 (file)
@@ -27,6 +27,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;
 }