diff --git a/commands/edit-number/math.js b/commands/edit-number/math.js index a04ca1d9..50204fea 100644 --- a/commands/edit-number/math.js +++ b/commands/edit-number/math.js @@ -20,7 +20,7 @@ module.exports = class MathCommand extends Command { } run(msg, { expression }) { - try { + try { const evaluated = Parser.evaluate(expression).toString(); return msg.reply(evaluated).catch(() => msg.reply('Invalid expression.')); } catch {