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) => {