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

The require_privilege option should default to yes not no.

This commit is contained in:
Sadie Powell
2025-06-11 09:28:26 +01:00
parent 16aff210fd
commit 34b451f36c
+1 -1
View File
@@ -501,7 +501,7 @@ Conf::Conf() : Block("")
c.group = group;
c.hide = fantasy.Get<bool>("hide");
c.prepend_channel = fantasy.Get<bool>("prepend_channel", "yes");
c.require_privilege = fantasy.Get<bool>("require_privilege", "no");
c.require_privilege = fantasy.Get<bool>("require_privilege", "yes");
}
for (int i = 0; i < this->CountBlock("command_group"); ++i)