diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index 75cfdb8d..219005f3 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -42,9 +42,8 @@ module.exports = class MinesweeperCommand extends Command { ${msg.author}, what coordinates do you pick (ex. 4,5)? Type \`end\` to forefeit. Type \`flag \` to flag a spot as a bomb. To remove a flag, run it again. - **Total Mines:** ${size + 1} - **Flagged:** ${flagged.length} ${this.displayBoard(game.board, game.mask, flagged)} + | **Total Mines:** ${size + 1} | **Flagged:** ${flagged.length} | `); const filter = res => { if (res.author.id !== msg.author.id) return false;