From 8804391a8fdaec3469bdf58af4c562cda1e9bda0 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 31 Oct 2020 11:20:16 -0400 Subject: [PATCH] Fix --- commands/games-sp/hearing-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/hearing-test.js b/commands/games-sp/hearing-test.js index 6925d358..af6cc515 100644 --- a/commands/games-sp/hearing-test.js +++ b/commands/games-sp/hearing-test.js @@ -47,7 +47,7 @@ module.exports = class HearingTestCommand extends Command { } } if (age === 'all') return msg.reply('Everyone should be able to hear that. You cannot hear.'); - return msg.reply(`You have the hearing of someone **${age} or younger**.`); + return msg.reply(`You have the hearing of someone **${Number.parseInt(age, 10) + 1} or older**.`); } catch (err) { return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); }