summaryrefslogtreecommitdiff
path: root/modules/commands/os_akill.cpp
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-10-02 00:13:40 +0200
committerAdam <Adam@anope.org>2013-10-05 00:33:03 -0400
commit82006b868f0fc33cfe8903cdcf854a7f6be9b344 (patch)
treed6c2a3dee62c8ea49ec147babbff616ecbde9b84 /modules/commands/os_akill.cpp
parentba5a3f5f00609a5d82abd9e255dc93ee44d0e8f4 (diff)
cs_entrymsg: Check for the correct override privilege.
Make some more commands check if Read-Only mode is active. cs_flags: Show a meaningful message when a user is not found on the access list. os_set: Add missing capabilities to the readonly help output. OperServ: Add logging to certain commands. NickServ: Undo logging for listings.
Diffstat (limited to 'modules/commands/os_akill.cpp')
-rw-r--r--modules/commands/os_akill.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/commands/os_akill.cpp b/modules/commands/os_akill.cpp
index b945058da..b04c48935 100644
--- a/modules/commands/os_akill.cpp
+++ b/modules/commands/os_akill.cpp
@@ -193,7 +193,7 @@ class CommandOSAKill : public Command
source.Reply(_("\002%s\002 added to the AKILL list."), mask.c_str());
- Log(LOG_ADMIN, source, this) << "on " << mask << " (" << x->reason << ") expires in " << (expires ? Anope::Duration(expires - Anope::CurTime) : "never") << " [affects " << affected << " user(s) (" << percent << "%)]";
+ Log(LOG_ADMIN, source, this) << "on " << mask << " (" << x->reason << "), expires in " << (expires ? Anope::Duration(expires - Anope::CurTime) : "never") << " [affects " << affected << " user(s) (" << percent << "%)]";
if (Anope::ReadOnly)
source.Reply(READ_ONLY_MODE);
}
@@ -233,6 +233,7 @@ class CommandOSAKill : public Command
{
FOREACH_MOD(OnDelXLine, (source, x, akills));
+ Log(LOG_ADMIN, source, this) << "to remove " << x->mask << " from the list";
source.Reply(_("\002%s\002 deleted from the AKILL list."), x->mask.c_str());
AkillDelCallback::DoDel(source, x);
}
@@ -358,7 +359,11 @@ class CommandOSAKill : public Command
akills->DelXLine(x);
}
+ Log(LOG_ADMIN, source, this) << "to CLEAR the list";
source.Reply(_("The AKILL list has been cleared."));
+
+ if (Anope::ReadOnly)
+ source.Reply(READ_ONLY_MODE);
}
public:
CommandOSAKill(Module *creator) : Command(creator, "operserv/akill", 1, 2)