From 56fe5d6f2fb4097a9d83f1d4b60fc2ddc2051844 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Fri, 14 Jul 2017 20:38:30 +0100 Subject: Change the maximum nick/user size to match other implementations. --- docs/conf/inspircd.conf.example | 4 ++-- src/configreader.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index 2d22f3160..fd12fc08a 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -757,7 +757,7 @@ ServerLimits::ServerLimits(ConfigTag* tag) - : NickMax(tag->getInt("maxnick", 32)) + : NickMax(tag->getInt("maxnick", 30)) , ChanMax(tag->getInt("maxchan", 64)) , MaxModes(tag->getInt("maxmodes", 20)) - , IdentMax(tag->getInt("maxident", 11)) + , IdentMax(tag->getInt("maxident", 10)) , MaxQuit(tag->getInt("maxquit", 255)) , MaxTopic(tag->getInt("maxtopic", 307)) , MaxKick(tag->getInt("maxkick", 255)) -- cgit v1.2.3