diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index ada57f13..b361f3e6 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -103,7 +103,7 @@ module.exports = class MinesweeperCommand extends Command { const highScoreUser = await this.client.redis.get(`minesweeper-${size}-user`); const scoreBeat = win && (!highScore || highScore > newScore); let user; - if (minesweeperUser) { + if (highScoreUser) { try { const fetched = await this.client.users.fetch(highScoreUser); user = fetched.tag;