From 5f114cbb81671509dae259a0e29f54f7e41db57d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 16 Jan 2021 17:20:51 -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 7ca304bf..057e7631 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -121,7 +121,7 @@ module.exports = class MinesweeperCommand extends Command { } else { str += nums[item - 1]; } - } else if (flagged.includes(`${i},${j}`)) { + } else if (flagged.includes(`${j},${i}`)) { str += '🚩'; } else { str += '❓';