Webpack build for branch master: dd8f77fcf0

This commit is contained in:
Travis CI 2017-04-29 16:47:31 +00:00
parent 0150883b93
commit 3c186f15cd
2 changed files with 7 additions and 2 deletions

View file

@ -25749,7 +25749,12 @@ class ReadyHandler extends AbstractHandler {
client.ws.connection.triggerReady();
}, 1200 * data.guilds.length);
client.once('ready', () => client.clearTimeout(t));
client.setMaxListeners(data.guilds.length + 1);
client.once('ready', () => {
client.setMaxListeners(10);
client.clearTimeout(t);
});
const ws = this.packetManager.ws;

File diff suppressed because one or more lines are too long