summaryrefslogtreecommitdiff
path: root/modules/core/cs_suspend.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-02-12 16:17:17 -0500
committerAdam <Adam@anope.org>2011-02-12 16:17:17 -0500
commit1372dc19537ce270f1f02979101f9b8678b5ff28 (patch)
treed56f688ec113293a2e40c78d615558f1163dad7b /modules/core/cs_suspend.cpp
parent9ef7352e69bc092bba77a085dfa0f91a5793e038 (diff)
Removed the Wallop config options and replaced them with the new log system
Diffstat (limited to 'modules/core/cs_suspend.cpp')
-rw-r--r--modules/core/cs_suspend.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/core/cs_suspend.cpp b/modules/core/cs_suspend.cpp
index bce98c205..82eac64a2 100644
--- a/modules/core/cs_suspend.cpp
+++ b/modules/core/cs_suspend.cpp
@@ -64,9 +64,6 @@ class CommandCSSuspend : public Command
}
}
- if (Config->WallForbid)
- ircdproto->SendGlobops(ChanServ, "\2%s\2 used SUSPEND on channel \2%s\2", u->nick.c_str(), ci->name.c_str());
-
Log(LOG_ADMIN, u, this, ci) << (!reason.empty() ? reason : "No reason");
source.Reply(_("Channel \002%s\002 is now suspended."), ci->name.c_str());
@@ -123,9 +120,6 @@ class CommandCSUnSuspend : public Command
ci->forbidreason.clear();
ci->forbidby.clear();
- if (Config->WallForbid)
- ircdproto->SendGlobops(ChanServ, "\2%s\2 used UNSUSPEND on channel \2%s\2", u->nick.c_str(), ci->name.c_str());
-
source.Reply(_("Channel \002%s\002 is now released."), ci->name.c_str());
FOREACH_MOD(I_OnChanUnsuspend, OnChanUnsuspend(ci));