Merge pull request #434 from williamboman/fix/excess-flood

irc-events/connection: increase join delay to 1000ms
This commit is contained in:
Jérémie Astori 2016-06-28 00:19:08 -04:00 committed by GitHub
commit 0cbcb98b0d

View file

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