diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-03 12:27:24 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-03 12:27:24 +0200 |
commit | 393cc8f9d65aefd92628115edae341562ea440e7 (patch) | |
tree | 65265c2c1e162cf228c0ea55ce5081c27bf1645f /src/coremods | |
parent | bee8625fbe375f55053d3709b72a2972fbf6ba84 (diff) |
Remove now needless User::ForceNickChange()
Change call sites to call ChangeNick()
Diffstat (limited to 'src/coremods')
-rw-r--r-- | src/coremods/core_user/cmd_nick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_user/cmd_nick.cpp b/src/coremods/core_user/cmd_nick.cpp index a28c40451..1d14ca703 100644 --- a/src/coremods/core_user/cmd_nick.cpp +++ b/src/coremods/core_user/cmd_nick.cpp @@ -83,7 +83,7 @@ CmdResult CommandNick::HandleLocal(const std::vector<std::string>& parameters, L } } - if (!user->ChangeNick(newnick, false)) + if (!user->ChangeNick(newnick)) return CMD_FAILURE; if (user->registered < REG_NICKUSER) |