From 66c36a13210c53777657356ce30cf6a23964d000 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 16 Jan 2021 17:55:13 -0500 Subject: [PATCH] Fix --- commands/games-sp/minesweeper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index 219005f3..e3b88910 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -43,7 +43,7 @@ module.exports = class MinesweeperCommand extends Command { Type \`flag \` to flag a spot as a bomb. To remove a flag, run it again. ${this.displayBoard(game.board, game.mask, flagged)} - | **Total Mines:** ${size + 1} | **Flagged:** ${flagged.length} | + **Total Mines:** ${size + 1} | **Flagged:** ${flagged.length} `); const filter = res => { if (res.author.id !== msg.author.id) return false;