diff --git a/commands/mp-games/connect-four.js b/commands/mp-games/connect-four.js index 30adaa73..0fa9a6fd 100644 --- a/commands/mp-games/connect-four.js +++ b/commands/mp-games/connect-four.js @@ -123,8 +123,8 @@ module.exports = class ConnectFourCommand extends Command { generateBoard() { const arr = []; - for (let i = 0; i < 7; i++) { - arr.push([null, null, null, null, null, null]); + for (let i = 0; i < 6; i++) { + arr.push([null, null, null, null, null, null, null]); } return arr; }