From aa6e24cfa35529954a214d042ee4a8b0e570e5d5 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 5 May 2017 14:14:42 +0000 Subject: [PATCH] This is fine --- commands/random/currency.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/random/currency.js b/commands/random/currency.js index f37069c6..fb521415 100644 --- a/commands/random/currency.js +++ b/commands/random/currency.js @@ -44,7 +44,7 @@ module.exports = class CurrencyCommand extends Command { async run(msg, args) { const { base, to, amount } = args; - if(base === to) return msg.say('You cannot convert to the same currency as your base.'); + if(base === to) return msg.say(`${amount} ${base} is ${amount} ${base}.`); try { const { body } = await request .get(`http://api.fixer.io/latest?base=${base}`);