From 4b1303ead38b0e2de74c6836b9104c95904b991d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 16 Jan 2021 17:54:29 -0500 Subject: [PATCH] Better styling --- commands/games-sp/minesweeper.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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;