From 1e7ce9cb5e760645d16e9dedbf4166553d6279e0 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 15 Jan 2021 19:49:22 -0500 Subject: [PATCH] Fix --- commands/games-sp/minesweeper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index c9b31691..d4af77b2 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -88,6 +88,7 @@ module.exports = class MinesweeperCommand extends Command { let str = ''; str += '⬛'; str += nums.slice(0, board.length).join(''); + str += '\n'; for (let i = 0; i < board.length; i++) { str += nums[i]; board[i].forEach((item, j) => {