diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/commands/bs_info.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_set.cpp | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/modules/commands/ns_set.cpp b/modules/commands/ns_set.cpp index d37f7bf6f..e3a6162db 100644 --- a/modules/commands/ns_set.cpp +++ b/modules/commands/ns_set.cpp @@ -424,7 +424,7 @@ class CommandNSSASetDisplay : public CommandNSSetDisplay this->SendSyntax(source); source.Reply(" "); source.Reply(_("Changes the display used to refer to the nickname group in \n" - "Services. The new display MUST be a nick of your group.")); + "Services. The new display MUST be a nick of the group.")); return true; } }; |