diff --git a/src/net/common/servermanager.cpp b/src/net/common/servermanager.cpp index 14f7cade..6a029a5a 100644 --- a/src/net/common/servermanager.cpp +++ b/src/net/common/servermanager.cpp @@ -134,6 +134,10 @@ ServerManager::SignalIrcChatMsg(const std::string &nickName, const std::string & m_ircThread->SendChatMessage(*i); ++i; } + ostringstream banListStream; + banListStream + << nickName << ": Total count of banned nicks: " << banList.size(); + m_ircThread->SendChatMessage(banListStream.str()); } else if (command == "removenickban") {