summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/conf/inspircd.conf.example6
-rw-r--r--include/listmode.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example
index 136346f7c..c90cf5755 100644
--- a/docs/conf/inspircd.conf.example
+++ b/docs/conf/inspircd.conf.example
@@ -493,11 +493,11 @@
# matches the channels name applies the banlimit to that channel. #
# It is advisable to put an entry with the channel as '*' at the #
# bottom of the list. If none are specified or no maxbans tag is #
-# matched, the banlist size defaults to 64 entries. #
+# matched, the banlist size defaults to 100 entries. #
# #
-<banlist chan="#largechan" limit="128">
-<banlist chan="*" limit="69">
+<banlist chan="#largechan" limit="200">
+<banlist chan="*" limit="100">
#-#-#-#-#-#-#-#-#-#-#- DISABLED FEATURES -#-#-#-#-#-#-#-#-#-#-#-#-#-#
# #
diff --git a/include/listmode.h b/include/listmode.h
index f49c5b3c8..f978e9c9a 100644
--- a/include/listmode.h
+++ b/include/listmode.h
@@ -64,7 +64,7 @@ class CoreExport ListModeBase : public ModeHandler
typedef std::vector<ListLimit> limitlist;
/** The default maximum list size. */
- static const unsigned int DEFAULT_LIST_SIZE = 64;
+ static const unsigned int DEFAULT_LIST_SIZE = 100;
/** Finds the limit of modes that can be placed on the given channel name according to the config
* @param channame The channel name to find the limit for