From 8d51b2fee265a428b82a8371d7332516eb7a1ee5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 9 Apr 2020 18:06:39 -0400 Subject: [PATCH] Fix --- commands/games-mp/dots-and-boxes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/dots-and-boxes.js b/commands/games-mp/dots-and-boxes.js index ce628190..478abf76 100644 --- a/commands/games-mp/dots-and-boxes.js +++ b/commands/games-mp/dots-and-boxes.js @@ -143,7 +143,7 @@ module.exports = class DotsAndBoxesCommand extends Command { displayBoard(board, taken, owned) { const displayed = []; displayed.push(new Array(24).fill('█').join('')); - displayed.push('\n'); + displayed.push('█ █'); board.map((values, row) => { if (row !== 0) { let takenMids = '█ '; @@ -162,8 +162,8 @@ module.exports = class DotsAndBoxesCommand extends Command { return val; }).join('')}█`); }); - displayed.push(new Array(24).fill('█').join('')); displayed.push('\n'); + displayed.push(new Array(24).fill('█').join('')); return displayed.join('\n'); } };