From c57d9ac1dcc8bebd56a4e34f55f3edcea41274e8 Mon Sep 17 00:00:00 2001 From: William Boman Date: Tue, 28 Jun 2016 00:00:51 +0200 Subject: [PATCH] irc-events/connection: increase join delay to 1000ms 100ms easily bypasses the excess flood threshold with constant reproducibility with >20 channels (Freenode). --- src/plugins/irc-events/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/irc-events/connection.js b/src/plugins/irc-events/connection.js index ddbd234d..ce2a2697 100644 --- a/src/plugins/irc-events/connection.js +++ b/src/plugins/irc-events/connection.js @@ -35,7 +35,7 @@ module.exports = function(irc, network) { setTimeout(function() { network.irc.join(chan.name); }, delay); - delay += 100; + delay += 1000; }); });