From fece1f88ef5f44162930d2ddef0e138a74a00a9c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 17 Mar 2020 17:43:18 -0400 Subject: [PATCH] Fix --- 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 3db473a9..7f935c82 100644 --- a/commands/mp-games/connect-four.js +++ b/commands/mp-games/connect-four.js @@ -48,7 +48,7 @@ module.exports = class ConnectFourCommand extends Command { const board = this.generateBoard(); let userTurn = true; let winner = null; - const colLevels = [6, 6, 6, 6, 6, 6, 6]; + const colLevels = [5, 5, 5, 5, 5, 5, 5]; while (!winner && board.some(row => row.includes(null))) { const user = userTurn ? msg.author : opponent; const sign = userTurn ? 'user' : 'oppo';