1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 22:43:13 +02:00

Allow services operators to release other user's nicks, and allow services operators to view the access list of other operators

This commit is contained in:
Robby
2012-05-08 02:01:44 -04:00
committed by Adam
parent b7149fc940
commit 25586f3246
4 changed files with 13 additions and 9 deletions
+2 -2
View File
@@ -120,9 +120,9 @@ class CommandNSAccess : public Command
source.Reply(ACCESS_DENIED);
return;
}
else if (Config->NSSecureAdmins && u->Account() != na->nc && na->nc->IsServicesOper())
else if (Config->NSSecureAdmins && u->Account() != na->nc && na->nc->IsServicesOper() && !cmd.equals_ci("LIST"))
{
source.Reply(_("You may view or modify the access list of other services operators."));
source.Reply(_("You may view but not modify the access list of other services operators."));
return;
}