diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-23 18:04:57 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-23 18:04:57 +0000 |
commit | 7b9d883eec813a828f2f5afc5d04148b933d643f (patch) | |
tree | 43b3487eb0c809b2fd8e04ffa7eb2b199d439496 | |
parent | a25ebde22705d1169b817a6a6d6a0b8a08d24467 (diff) |
Make these notices a little more helpful
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7505 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/cmd_connect.cpp | 2 | ||||
-rw-r--r-- | src/cmd_squit.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_connect.cpp b/src/cmd_connect.cpp index fc3ae9d7a..c744166bf 100644 --- a/src/cmd_connect.cpp +++ b/src/cmd_connect.cpp @@ -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; } diff --git a/src/cmd_squit.cpp b/src/cmd_squit.cpp index 57105109b..49360d84f 100644 --- a/src/cmd_squit.cpp +++ b/src/cmd_squit.cpp @@ -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; } |