From 5aa5b569df0a7a3524abf9b9c03e4a92ff19f7f1 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 7 Feb 2021 22:32:32 -0500 Subject: [PATCH] Round WPM --- commands/games-mp/typing-race.js | 2 +- commands/games-sp/typing-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/typing-race.js b/commands/games-mp/typing-race.js index 567ab422..00740ffc 100644 --- a/commands/games-mp/typing-race.js +++ b/commands/games-mp/typing-race.js @@ -61,7 +61,7 @@ module.exports = class TypingRaceCommand extends Command { if (!winner.size) return msg.say('Oh... No one won.'); const wpm = (sentence.length / 5) / ((newScore / 1000) / 60); return msg.say(stripIndents` - The winner is ${winner.first().author}! (Took ${newScore / 1000} seconds, ${wpm} WPM) + The winner is ${winner.first().author}! (Took ${newScore / 1000} seconds, ${Math.round(wpm)} WPM) ${scoreBeat ? `**New High Score!** Old:` : `High Score:`} ${highScore / 1000} (Held by ${user}) `); } catch (err) { diff --git a/commands/games-sp/typing-test.js b/commands/games-sp/typing-test.js index 860da275..45fe020e 100644 --- a/commands/games-sp/typing-test.js +++ b/commands/games-sp/typing-test.js @@ -41,7 +41,7 @@ module.exports = class TypingTestCommand extends Command { if (msgs.first().content.toLowerCase() !== sentence) return msg.reply('Sorry! You made a typo, so you lose!'); const wpm = (sentence.length / 5) / ((newScore / 1000) / 60); return msg.reply(stripIndents` - Nice job! 10/10! You deserve some cake! (Took ${newScore / 1000} seconds, ${wpm} WPM) + Nice job! 10/10! You deserve some cake! (Took ${newScore / 1000} seconds, ${Math.round(wpm)} WPM) ${scoreBeat ? `**New High Score!** Old:` : `High Score:`} ${highScore / 1000} (Held by ${user}) `); }