From ca346c0ab80f673f3afb86c03aa27e1abfd40ee2 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 2 May 2021 09:28:49 -0400 Subject: [PATCH] Wait for 2 minutes by default --- util/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Util.js b/util/Util.js index 78c110ca..e9007531 100644 --- a/util/Util.js +++ b/util/Util.js @@ -329,7 +329,7 @@ module.exports = class Util { if (res.content.toLowerCase() !== 'join game') return false; return true; }; - const collector = msg.channel.createMessageCollector(filter, { max: max - 1, time: 60000 }); + const collector = msg.channel.createMessageCollector(filter, { max: max - 1, time: 120000 }); collector.on('collect', res => { if (res.content.toLowerCase() === 'start game') { Util.reactIfAble(res, res.author, SUCCESS_EMOJI_ID, '✅');