diff options
| author | 2005-04-04 18:12:23 +0000 | |
|---|---|---|
| committer | 2005-04-04 18:12:23 +0000 | |
| commit | d68dcc665827575df74156f08b22451f98aaaef6 (patch) | |
| tree | aebcd408dd91512560111917eec18629def49097 /src/commands.cpp | |
| parent | Added E:Lines, a form of ban exception that can prevent opers, netadmins etc ... (diff) | |
Added the module method OnUserPostNick for capturing a nickchange AFTER it has taken place
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@976 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
| -rw-r--r-- | src/commands.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 2ae4e0049..ef95d1f3f 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1650,9 +1650,11 @@ void handle_nick(char **parameters, int pcnt, userrec *user) char buffer[MAXBUF]; snprintf(buffer,MAXBUF,"n %s %s",user->nick,parameters[0]); NetSendToAll(buffer); - } + char oldnick[NICKMAX]; + strlcpy(oldnick,user->nick,NICKMAX); + /* change the nick of the user in the users_hash */ user = ReHashNick(user->nick, parameters[0]); /* actually change the nick within the record */ @@ -1677,6 +1679,10 @@ void handle_nick(char **parameters, int pcnt, userrec *user) /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */ ConnectUser(user); } + if (user->registered == 7) + { + FOREACH_MOD OnUserPostNick(user,oldnick); + } } |
