From b20882da0dedaffdcc7951cc08021f7b69a07998 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 25 Jan 2021 22:33:47 -0500 Subject: [PATCH] Fix --- commands/games-mp/obstruction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/obstruction.js b/commands/games-mp/obstruction.js index 336c0123..57f3a6a4 100644 --- a/commands/games-mp/obstruction.js +++ b/commands/games-mp/obstruction.js @@ -145,7 +145,7 @@ module.exports = class ObstructionCommand extends Command { const arr = []; for (let i = 0; i < size; i++) { const row = []; - for (let j = 0; j < size; j++) row.push(null); + for (let j = 0; j < size; j++) row.push('NA'); arr.push(row); } return arr;