From d5d25363419de9bf07e6bb4570b773ebf3af5bb4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 17 Mar 2020 18:16:40 -0400 Subject: [PATCH] 30s -> 60s in Connect Four --- commands/mp-games/connect-four.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/mp-games/connect-four.js b/commands/mp-games/connect-four.js index 8ea87a3f..4bf278a2 100644 --- a/commands/mp-games/connect-four.js +++ b/commands/mp-games/connect-four.js @@ -68,7 +68,7 @@ module.exports = class ConnectFourCommand extends Command { }; const turn = await msg.channel.awaitMessages(filter, { max: 1, - time: 30000 + time: 60000 }); if (!turn.size) { await msg.say('Sorry, time is up!');