diff options
author | Peter Powell <petpow@saberuk.com> | 2019-10-24 15:22:46 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-10-24 15:56:21 +0100 |
commit | 95b876373480bb982aed7d3d14bcfc18cd1f7458 (patch) | |
tree | 20e8c90b50720300c27f898c2ee142240dd2c1b6 /src/modules | |
parent | 493acff4ebc762c480df8e1e5c02ed140a0a81c3 (diff) |
Raise <connflood:bootwait> from 10 seconds to 2 minutes.
Many clients don't reconnect automatically and it can take a while
for them to reconnect.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_connflood.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_connflood.cpp b/src/modules/m_connflood.cpp index 5070dd3a7..78271b5a1 100644 --- a/src/modules/m_connflood.cpp +++ b/src/modules/m_connflood.cpp @@ -54,7 +54,7 @@ public: quitmsg = tag->getString("quitmsg"); /* seconds to wait when the server just booted */ - boot_wait = tag->getDuration("bootwait", 10); + boot_wait = tag->getDuration("bootwait", 60*2); first = ServerInstance->Time(); } |