From 5cadd420ec1ea38f9156554721752701185d5fcf Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 17 Jan 2021 12:13:38 -0500 Subject: [PATCH] Fix --- commands/util-public/high-scores.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util-public/high-scores.js b/commands/util-public/high-scores.js index 3f5257f1..111675de 100644 --- a/commands/util-public/high-scores.js +++ b/commands/util-public/high-scores.js @@ -37,7 +37,7 @@ module.exports = class HighScoresCommand extends Command { } const reactionTimeGet = await this.client.redis.get('reaction-time'); const reactionTime = reactionTimeGet ? Number.parseInt(reactionTimeGet, 10) : null; - const reactionTimeUser = await this.client.redis.get('reaction-time'); + const reactionTimeUser = await this.client.redis.get('reaction-time-user'); const reactionTimeUserDisplay = await fetchHSUserDisplay(this.client, reactionTimeUser); const minesweeperDisplay = Object.entries(minesweeperScores) .map(([size, score]) => `\`${size}x${size}\`: ${score} (Held by ${minesweeperUsers[size]})`)