diff options
author | Adam <Adam@anope.org> | 2011-08-18 22:04:59 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-18 22:04:59 -0400 |
commit | db340f96d6e9741a23470840a77901c5c45b580f (patch) | |
tree | a6ae8787da9cd45ae3514ea0933b9f99d994f39c /modules/commands/bs_botlist.cpp | |
parent | 0cdca534a87e70c0044480aa3a16807d881295d7 (diff) |
Fixed some permission checking fail in modules that got messed up from the big commands sed
Diffstat (limited to 'modules/commands/bs_botlist.cpp')
-rw-r--r-- | modules/commands/bs_botlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/bs_botlist.cpp b/modules/commands/bs_botlist.cpp index ee7e4d2d8..b614c0689 100644 --- a/modules/commands/bs_botlist.cpp +++ b/modules/commands/bs_botlist.cpp @@ -40,7 +40,7 @@ class CommandBSBotList : public Command } } - if (u->HasCommand("botserv/botserv/botlist") && count < BotListByNick.size()) + if (u->HasCommand("botserv/botlist") && count < BotListByNick.size()) { source.Reply(_("Bots reserved to IRC operators:")); |