From 2e59aac025bb6717e1ad0881fa09b884dae18a2e Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 29 Mar 2024 14:21:51 +0000 Subject: Fix the default value of accessmax in cs_access. --- modules/chanserv/cs_access.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chanserv/cs_access.cpp b/modules/chanserv/cs_access.cpp index 7f10ae3e0..4c3981a5e 100644 --- a/modules/chanserv/cs_access.cpp +++ b/modules/chanserv/cs_access.cpp @@ -200,7 +200,7 @@ class CommandCSAccess final } } - unsigned access_max = Config->GetModule("chanserv")->Get("accessmax", "1024"); + unsigned access_max = Config->GetModule("chanserv")->Get("accessmax", "1000"); if (access_max && ci->GetDeepAccessCount() >= access_max) { source.Reply(_("Sorry, you can only have %d access entries on a channel, including access entries from other channels."), access_max); -- cgit