1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 01:33:12 +02:00

Fix logging for log type 'other'.

os_ignore: Log expired ignores to the normal log level.
cs_drop: Allow Services Operators to actually drop channels in Read-Only mode.
os_akill, os_sxline, cs_akick: Log deletions by number.
This commit is contained in:
Robby-
2013-10-04 05:45:28 +02:00
committed by Adam
parent e5b8435769
commit 97d7c21193
12 changed files with 40 additions and 33 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ class CommandCSDrop : public Command
{
const Anope::string &chan = params[0];
if (Anope::ReadOnly)
if (Anope::ReadOnly && !source.HasPriv("chanserv/administration"))
{
source.Reply(_("Sorry, channel de-registration is temporarily disabled.")); // XXX: READ_ONLY_MODE?
return;