diff options
author | Adam <Adam@anope.org> | 2010-07-10 22:50:18 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-07-10 22:50:18 -0400 |
commit | 63d71424650ac697f2e698c1c8fd242729691a0f (patch) | |
tree | 9c55ed88e580056540f9c728590a50cca7b39404 /src/core/bs_help.cpp | |
parent | a49521302628982f62ddadd997a81734f4d8c84f (diff) |
Added options:hideprivilegedcommands config option to hide privileged commands from normal users
Diffstat (limited to 'src/core/bs_help.cpp')
-rw-r--r-- | src/core/bs_help.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/bs_help.cpp b/src/core/bs_help.cpp index 694318187..7183c6fe9 100644 --- a/src/core/bs_help.cpp +++ b/src/core/bs_help.cpp @@ -33,7 +33,8 @@ class CommandBSHelp : public Command // Abuse syntax error to display general list help. notice_help(Config.s_BotServ, u, BOT_HELP); for (CommandMap::const_iterator it = BotServ->Commands.begin(), it_end = BotServ->Commands.end(); it != it_end; ++it) - it->second->OnServHelp(u); + if (!Config.HidePrivilegedCommands || it->second->permission.empty() || (u->Account() && u->Account()->HasCommand(it->second->permission))) + it->second->OnServHelp(u); notice_help(Config.s_BotServ, u, BOT_HELP_FOOTER, Config.BSMinUsers); } }; |