diff options
| author | 2020-01-29 11:44:50 +0000 | |
|---|---|---|
| committer | 2020-01-29 12:00:32 +0000 | |
| commit | 6597fe5d4fd2c1cc474fa35a0db21fec480ff47f (patch) | |
| tree | 1ad5986e40cb8e7dc392af21cd5d0e5e119196c2 /src/modules/m_remove.cpp | |
| parent | Fix "control reaches end of non-void function" warning. (diff) | |
Add Channel::WriteRemoteNotice and revert WriteNotice changes.
This is a partial reversion of 687778b72e.
See also: #1749.
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 1061a964f..10209af78 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -141,7 +141,7 @@ class RemoveBase : public Command /* Build up the part reason string. */ reason = "Removed by " + user->nick + ": " + reasonparam; - channel->WriteNotice(InspIRCd::Format("%s removed %s from the channel", user->nick.c_str(), target->nick.c_str())); + channel->WriteRemoteNotice(InspIRCd::Format("%s removed %s from the channel", user->nick.c_str(), target->nick.c_str())); target->WriteNotice("*** " + user->nick + " removed you from " + channel->name + " with the message: " + reasonparam); channel->PartUser(target, reason); |
