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:
parent
c29e0f98e2
commit
c57d9ac1dc
@ -35,7 +35,7 @@ module.exports = function(irc, network) {
|
||||
setTimeout(function() {
|
||||
network.irc.join(chan.name);
|
||||
}, delay);
|
||||
delay += 100;
|
||||
delay += 1000;
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user