From 7a22683df286bacdef0abf7ff647d75d52ef133b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 17 Jan 2021 11:15:35 -0500 Subject: [PATCH] Fix --- commands/util-public/high-scores.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/util-public/high-scores.js b/commands/util-public/high-scores.js index c500ecc7..73478d74 100644 --- a/commands/util-public/high-scores.js +++ b/commands/util-public/high-scores.js @@ -31,9 +31,9 @@ module.exports = class HighScoresCommand extends Command { const reactionTime = reactionTimeGet ? Number.parseInt(reactionTimeGet, 10) : null; return msg.say(stripIndents` __**Single-Score Games:**__ - \`typing-race\`/\`typing-test\`: ${typingRace}s + \`typing-race\`/\`typing-test\`: ${typingRace / 1000}s \`anagramica\`: ${anagrams} - \`reaction-time\`: ${reactionTime}s + \`reaction-time\`: ${reactionTime / 1000}s __**Minesweeper:**__ ${Object.entries(minesweeperScores).map(([size, score]) => `\`${size}x${size}\`: ${score}`).join('\n')}