summaryrefslogtreecommitdiff
path: root/commands/utility/btcchange.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-12 05:48:25 -0700
committer8cy <[email protected]>2020-04-12 05:48:25 -0700
commitb9b82004cd5e7b64deb1b20e2ea17353f4d01deb (patch)
treee896855b35174116bc5ddc6e716e4a7a8ff40df2 /commands/utility/btcchange.js
parentoop, v3.0.1 (diff)
downloads5nical-b9b82004cd5e7b64deb1b20e2ea17353f4d01deb.tar.xz
s5nical-b9b82004cd5e7b64deb1b20e2ea17353f4d01deb.zip
emojis for all :D, 3.0.2
Diffstat (limited to 'commands/utility/btcchange.js')
-rw-r--r--commands/utility/btcchange.js8
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