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_timedbans.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_timedbans.cpp')
| -rw-r--r-- | src/modules/m_timedbans.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp index cbdea1179..8b449f768 100644 --- a/src/modules/m_timedbans.cpp +++ b/src/modules/m_timedbans.cpp @@ -137,7 +137,7 @@ class CommandTban : public Command PrefixMode* mh = ServerInstance->Modes->FindPrefixMode('h'); char pfxchar = (mh && mh->name == "halfop") ? mh->GetPrefix() : '@'; - channel->WriteNotice(message, pfxchar); + channel->WriteRemoteNotice(message, pfxchar); return CMD_SUCCESS; } @@ -228,7 +228,7 @@ class ModuleTimedBans : public Module PrefixMode* mh = ServerInstance->Modes->FindPrefixMode('h'); char pfxchar = (mh && mh->name == "halfop") ? mh->GetPrefix() : '@'; - cr->WriteNotice(message, pfxchar); + cr->WriteRemoteNotice(message, pfxchar); Modes::ChangeList setban; setban.push_remove(ServerInstance->Modes->FindMode('b', MODETYPE_CHANNEL), mask); |
