Add 'you are a nub' messages to /squit and /connect stubs

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3570 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2006-03-09 00:18:28 +00:00
parent 945dda1089
commit 9c65ad17c7
2 changed files with 5 additions and 2 deletions

View File

@ -36,6 +36,7 @@ using namespace std;
*/
void cmd_connect::Handle (char **parameters, int pcnt, userrec *user)
{
WriteServ(user->fd, "NOTICE %s :You are a nub. Load a linking module.", user->nick);
}

View File

@ -61,8 +61,10 @@ extern std::vector<userrec*> all_opers;
extern std::vector<userrec*> local_users;
extern userrec* fd_ref_table[MAX_DESCRIPTORS];
/*
* This is handled by the server linking module, if necessary. Do not remove this stub.
*/
void cmd_squit::Handle (char **parameters, int pcnt, userrec *user)
{
WriteServ(user->fd, "NOTICE %s :You are a nub. Load a linking module.", user->nick);
}