diff options
author | Adam <Adam@anope.org> | 2012-04-25 19:02:09 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-04-25 19:02:09 -0400 |
commit | 83ee20fc2910e9ea0cac250e767d20f17576d98a (patch) | |
tree | 56b9264088d9a26d1638dbe277202755a1492ffd /modules/commands/ns_drop.cpp | |
parent | b08aa4ed92625693b60cd490f1d8f10ca8fdaefd (diff) |
Clarify access denied messages caused by NSSecureAdmins
Diffstat (limited to 'modules/commands/ns_drop.cpp')
-rw-r--r-- | modules/commands/ns_drop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_drop.cpp b/modules/commands/ns_drop.cpp index 3f3a5dd46..442655c0f 100644 --- a/modules/commands/ns_drop.cpp +++ b/modules/commands/ns_drop.cpp @@ -54,7 +54,7 @@ class CommandNSDrop : public Command if (!is_mine && !u->HasPriv("nickserv/drop")) source.Reply(ACCESS_DENIED); else if (Config->NSSecureAdmins && !is_mine && na->nc->IsServicesOper()) - source.Reply(ACCESS_DENIED); + source.Reply(_("You may not drop other services operators nicknames.")); else { if (readonly) |