diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bots.cpp | 2 | ||||
-rw-r--r-- | src/core/bs_bot.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bots.cpp b/src/bots.cpp index 31cfe04b7..19ef256c2 100644 --- a/src/bots.cpp +++ b/src/bots.cpp @@ -74,7 +74,7 @@ BotInfo::~BotInfo() } -void BotInfo::ChangeNick(const char *newnick) +void BotInfo::SetNewNick(const std::string &newnick) { UserListByNick.erase(this->nick.c_str()); BotListByNick.erase(this->nick.c_str()); diff --git a/src/core/bs_bot.cpp b/src/core/bs_bot.cpp index 5217ecbc8..3af9fa685 100644 --- a/src/core/bs_bot.cpp +++ b/src/core/bs_bot.cpp @@ -245,7 +245,7 @@ class CommandBSBot : public Command } if (bi->nick != nick) - bi->ChangeNick(nick); + bi->SetNewNick(nick); if (user && bi->GetIdent() != user) bi->SetIdent(user); |