diff --git a/commands/random/mathgame.js b/commands/random/mathgame.js index 2ebfaa9d..da9a8b2b 100644 --- a/commands/random/mathgame.js +++ b/commands/random/mathgame.js @@ -54,7 +54,7 @@ module.exports = class MathGameCommand extends commando.Command { time: 10000, errors: ['time'], }); - message.channel.send(`Good Job! You won! ${collected} is the correct answer!`); + message.channel.send(`Good Job! You won! ${solved} is the correct answer!`); } catch (err) { message.channel.send(`Aw... Too bad, try again next time!\nThe correct answer is: ${solved}`); diff --git a/commands/random/quiz.js b/commands/random/quiz.js index c52e029e..4ceca61a 100644 --- a/commands/random/quiz.js +++ b/commands/random/quiz.js @@ -37,7 +37,7 @@ module.exports = class QuizCommand extends commando.Command { time: 15000, errors: ['time'] }); - message.channel.send(`Good Job! You won! ${collected} is the correct answer!`); + message.channel.send(`Good Job! You won! ${response.body[0].answer} is the correct answer!`); } catch (err) { message.channel.send(`Aw... Too bad, try again next time!\nThe Correct Answer was: ${response.body[0].answer}`); diff --git a/commands/random/typinggame.js b/commands/random/typinggame.js index 279b4023..e3e0294b 100644 --- a/commands/random/typinggame.js +++ b/commands/random/typinggame.js @@ -64,7 +64,7 @@ module.exports = class TypingGameCommand extends commando.Command { time: time, errors: ['time'] }); - message.channel.send(`Good Job! You won!\n${collected} was typed fast enough!`); + message.channel.send(`Good Job! You won!`); } catch (err) { message.channel.send('Aw... Too bad, try again next time!');