summaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_timedbans.cpp')
-rw-r--r--src/modules/m_timedbans.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp
index 096306b1d..d592581f5 100644
--- a/src/modules/m_timedbans.cpp
+++ b/src/modules/m_timedbans.cpp
@@ -164,12 +164,12 @@ class ModuleTimedBans : public Module
/* Send mode remotely*/
std::deque<std::string> n;
- n.push_back(setban[0]);
n.push_back("-b");
n.push_back(setban[2]);
+
+ ServerInstance->PI->SendMode(i->channel, n);
ServerInstance->SendMode(setban,3, ServerInstance->FakeClient);
- Event rmode((char *)&n, NULL, "send_mode");
- rmode.Send(ServerInstance);
+
CUList empty;
cr->WriteAllExcept(ServerInstance->FakeClient, true, '@', empty, "NOTICE %s :*** Timed ban on %s expired.", cr->name, i->mask.c_str());
if (ServerInstance->Config->AllowHalfop)