diff options
| author | 2006-08-25 19:02:18 +0000 | |
|---|---|---|
| committer | 2006-08-25 19:02:18 +0000 | |
| commit | 1a124bb23ab6b04ced9e2fb762423a0260882841 (patch) | |
| tree | 5ab00ed5734cdf95873098d89e9a2aaef32ac4e4 /src/modules | |
| parent | Add <options:cyclehosts> which allows a user to appear to have quit when thei... (diff) | |
Add userrec::ChangeIdent (which we were missing) which can emulate the quit/rejoin same as ChangeDisplayedHost
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5022 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_chgident.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_chgident.cpp b/src/modules/m_chgident.cpp index e5b19bfca..3eab361a1 100644 --- a/src/modules/m_chgident.cpp +++ b/src/modules/m_chgident.cpp @@ -30,7 +30,8 @@ class cmd_chgident : public command_t } ServerInstance->WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]); - strlcpy(dest->ident, parameters[1], IDENTMAX+2); + dest->ChangeIdent(parameters[1]); + //strlcpy(dest->ident, parameters[1], IDENTMAX+2); } else { |
