diff options
Diffstat (limited to 'modules/core/cs_suspend.cpp')
-rw-r--r-- | modules/core/cs_suspend.cpp | 6 |
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)); |