From 7b9d883eec813a828f2f5afc5d04148b933d643f Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 23 Jul 2007 18:04:57 +0000 Subject: [PATCH] Make these notices a little more helpful git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7505 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_connect.cpp | 2 +- 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; } -- 2.39.5