diff options
Diffstat (limited to 'commands/utility/btc.js')
| -rw-r--r-- | commands/utility/btc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/utility/btc.js b/commands/utility/btc.js index 6288c50..128ac66 100644 --- a/commands/utility/btc.js +++ b/commands/utility/btc.js @@ -27,7 +27,7 @@ module.exports = class BTCUtility extends Command { run(msg, { currencyName }) { currencyName = currencyName.toUpperCase(); btc({ isDecimal: true, currencyCode: currencyName }).then(value => { - msg.reply('the current *bitcoin* price in **' + currencyName + '** is **' + value + '**'); + msg.reply('the current *bitcoin* price in **' + currencyName + '** is **' + value + '** ' + emoji.random()); }); } };
\ No newline at end of file |