Skip to content

Commit

Permalink
Make these notices a little more helpful
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7505 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
rburchell committed Jul 23, 2007
1 parent a25ebde commit 7b9d883
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd_connect.cpp
Expand Up @@ -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;
}
2 changes: 1 addition & 1 deletion src/cmd_squit.cpp
Expand Up @@ -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;
}

0 comments on commit 7b9d883

Please sign in to comment.