From 05fe60d6a40e4b9a79341efd78861c5f20caf59b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 19 Apr 2017 12:30:20 +0000 Subject: [PATCH] Slight Fix in Math Game --- commands/games/mathgame.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games/mathgame.js b/commands/games/mathgame.js index f81f776c..e2282cdc 100644 --- a/commands/games/mathgame.js +++ b/commands/games/mathgame.js @@ -52,7 +52,7 @@ module.exports = class MathGameCommand extends Command { } const value1 = Math.floor(Math.random() * value) + 1; const value2 = Math.floor(Math.random() * value) + 1; - const expression = `${value1} ${operation}${value2}`; + const expression = `${value1} ${operation} ${value2}`; const solved = math.eval(expression); const embed = new RichEmbed() .setTitle('You have **ten** seconds to answer:')