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 += '❓';