diff options
Diffstat (limited to 'commands/utility/btcchange.js')
| -rw-r--r-- | commands/utility/btcchange.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/utility/btcchange.js b/commands/utility/btcchange.js index a113d2d..ccfc271 100644 --- a/commands/utility/btcchange.js +++ b/commands/utility/btcchange.js @@ -28,18 +28,18 @@ module.exports = class BTCChangeUtility extends Command { run(msg, { timeAmount }) { if (timeAmount == 'day') { btc.getPercentageChangeLastDay().then(percentage => { - msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%**'); + msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%** ' + emoji.random()); }); } else if (timeAmount == 'hour') { btc.getPercentageChangeLastHour().then(percentage => { - msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%**'); + msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%** ' + emoji.random()); }); } else if (timeAmount == 'week') { btc.getPercentageChangeLastWeek().then(percentage => { - msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%**'); + msg.reply('the fluction amount of *bitcoin* in the last **' + timeAmount + '** is **' + percentage + '%** ' + emoji.random()); }); } else { - msg.reply('*' + timeAmount + '* is not a valid range lol'); + msg.reply('*' + timeAmount + '* is not a valid range lol ' + emoji.random()); } } };
\ No newline at end of file |