diff options
| author | 2022-04-05 23:37:33 +0100 | |
|---|---|---|
| committer | 2022-04-05 23:37:33 +0100 | |
| commit | 72372136c46e1863ba09140f1d79e2e53270b86b (patch) | |
| tree | 05468ef0c90e6caa9eeb4ce9b74fd88f77c901be /src/channels.cpp | |
| parent | Release v4.0.0 alpha 9. (diff) | |
| parent | Use consistent xline messages locally (diff) | |
Merge branch 'insp3' into master.
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index 983b89177..ce8820d66 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -425,7 +425,7 @@ const char* Channel::ChanModes(bool showsecret) void Channel::WriteNotice(const std::string& text, char status) { ClientProtocol::Messages::Privmsg privmsg(ClientProtocol::Messages::Privmsg::nocopy, ServerInstance->FakeClient, this, text, MSG_NOTICE, status); - Write(ServerInstance->GetRFCEvents().privmsg, privmsg); + Write(ServerInstance->GetRFCEvents().privmsg, privmsg, status); } void Channel::WriteRemoteNotice(const std::string& text, char status) |
