irc-events/connection: increase join delay to 1000ms

100ms easily bypasses the excess flood threshold with constant
reproducibility with >20 channels (Freenode).
This commit is contained in:
William Boman 2016-06-28 00:00:51 +02:00
parent c29e0f98e2
commit c57d9ac1dc

View File

@ -35,7 +35,7 @@ module.exports = function(irc, network) {
setTimeout(function() {
network.irc.join(chan.name);
}, delay);
delay += 100;
delay += 1000;
});
});