This commit is contained in:
Dragon Fire
2021-01-25 22:33:47 -05:00
parent edfb6a6d46
commit b20882da0d
+1 -1
View File
@@ -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;