diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-09 11:39:03 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-09 11:43:38 +0000 |
commit | 12486f6ceedf9b3f3ee90c72f4b61c1aef931656 (patch) | |
tree | 6595b82274a75d15c05187460dcfa65bd58e56a8 /modules/chanserv/cs_mode.cpp | |
parent | 891375baca44d1b18e60505ecf6ae52bf2c46e29 (diff) |
Tweak the config default limits slightly.
Diffstat (limited to 'modules/chanserv/cs_mode.cpp')
-rw-r--r-- | modules/chanserv/cs_mode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/cs_mode.cpp b/modules/chanserv/cs_mode.cpp index 631196c7a..8c7c7c1c3 100644 --- a/modules/chanserv/cs_mode.cpp +++ b/modules/chanserv/cs_mode.cpp @@ -336,7 +336,7 @@ class CommandCSMode final continue; } - if (modelocks->GetMLock().size() >= Config->GetModule(this->owner)->Get<unsigned>("max", "32")) + if (modelocks->GetMLock().size() >= Config->GetModule(this->owner)->Get<unsigned>("max", "50")) { source.Reply(_("The mode lock list of \002%s\002 is full."), ci->name.c_str()); continue; |