Make these notices a little more helpful

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7505 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2007-07-23 18:04:57 +00:00
parent a25ebde227
commit 7b9d883eec
2 changed files with 2 additions and 2 deletions

View 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;
}

View 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;
}