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';