From bd21dddb8d57996cf74b93fb25f3f0c2def71d4f Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 17 Mar 2020 17:33:33 -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 de27f4da..30adaa73 100644 --- a/commands/mp-games/connect-four.js +++ b/commands/mp-games/connect-four.js @@ -123,7 +123,7 @@ module.exports = class ConnectFourCommand extends Command { generateBoard() { const arr = []; - for (let i = 0; i < 6; i++) { + for (let i = 0; i < 7; i++) { arr.push([null, null, null, null, null, null]); } return arr;