Slight Fix in Math Game

This commit is contained in:
Daniel Odendahl Jr
2017-04-19 12:30:20 +00:00
parent 9d95ae3e7f
commit 05fe60d6a4
+1 -1
View File
@@ -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:')