diff options
author | Robby- <robby@chat.be> | 2013-01-31 06:19:14 +0100 |
---|---|---|
committer | Robby- <robby@chat.be> | 2013-01-31 06:19:14 +0100 |
commit | aea86906f40775e92c5219266eef7dfdb05f6589 (patch) | |
tree | d1487100ce9b1e716ab7945cef6126093dcab1dc /modules/commands/bs_info.cpp | |
parent | a62698a14a1c8b735050845b752f7a0f7175c227 (diff) |
Some configuration file updates: Removed now non-existing settings. Redid some existing settings to look more consistent/uniform. Added some missing commands/permissions.
Merged operserv/modlist permission into operserv/modinfo.
Fixed ChanServ INFO privilege to actually work for /BotServ INFO too for those users who have it, instead of only for founders.
Fixed some typos aswell as removed whitespaces along the way.
Diffstat (limited to 'modules/commands/bs_info.cpp')
-rw-r--r-- | modules/commands/bs_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/bs_info.cpp b/modules/commands/bs_info.cpp index 7edcedfda..bc92b6fe3 100644 --- a/modules/commands/bs_info.cpp +++ b/modules/commands/bs_info.cpp @@ -89,7 +89,7 @@ class CommandBSInfo : public Command } else if ((ci = ChannelInfo::Find(query))) { - if (!source.AccessFor(ci).HasPriv("FOUNDER") && !source.HasPriv("botserv/administration")) + if (!source.AccessFor(ci).HasPriv("INFO") && !source.HasPriv("botserv/administration")) { source.Reply(ACCESS_DENIED); return; |