From a7400deed8a1756cf85072b49748986c97f1f483 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Jun 2020 10:17:48 -0400 Subject: [PATCH] Wait for 60 seconds in awaitPlayers --- util/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Util.js b/util/Util.js index 6b285856..4a9a1332 100644 --- a/util/Util.js +++ b/util/Util.js @@ -193,7 +193,7 @@ module.exports = class Util { res.react(SUCCESS_EMOJI_ID || '✅').catch(() => null); return true; }; - const verify = await msg.channel.awaitMessages(filter, { max: max - 1, time: 30000 }); + const verify = await msg.channel.awaitMessages(filter, { max: max - 1, time: 60000 }); verify.set(msg.id, msg); if (verify.size < min) return false; return verify.map(player => player.author.id);