diff options
| author | 2020-12-20 03:04:21 +0000 | |
|---|---|---|
| committer | 2020-12-20 03:05:29 +0000 | |
| commit | 6cfabb0064cab52bbbab59974e53dc0fa1954da7 (patch) | |
| tree | aa755e92103730ba6428332b4094578cde91cc67 /src/usermanager.cpp | |
| parent | Fix an inverted condition in the previous commit. (diff) | |
Hide the server name/desc better when <options:hideserver> is set.
Diffstat (limited to 'src/usermanager.cpp')
| -rw-r--r-- | src/usermanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usermanager.cpp b/src/usermanager.cpp index 812f43113..bb325f9ee 100644 --- a/src/usermanager.cpp +++ b/src/usermanager.cpp @@ -369,7 +369,7 @@ void UserManager::ServerNoticeAll(const char* text, ...) { std::string message; VAFORMAT(message, text, text); - ClientProtocol::Messages::Privmsg msg(ClientProtocol::Messages::Privmsg::nocopy, ServerInstance->FakeClient, ServerInstance->Config->ServerName, message, MSG_NOTICE); + ClientProtocol::Messages::Privmsg msg(ClientProtocol::Messages::Privmsg::nocopy, ServerInstance->FakeClient, ServerInstance->Config->GetServerName(), message, MSG_NOTICE); ClientProtocol::Event msgevent(ServerInstance->GetRFCEvents().privmsg, msg); for (LocalList::const_iterator i = local_users.begin(); i != local_users.end(); ++i) |
