summaryrefslogtreecommitdiff
path: root/commands/utility
diff options
context:
space:
mode:
Diffstat (limited to 'commands/utility')
-rw-r--r--commands/utility/btc.js2
-rw-r--r--commands/utility/btcchange.js8
-rw-r--r--commands/utility/clear.js10
3 files changed, 10 insertions, 10 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
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
diff --git a/commands/utility/clear.js b/commands/utility/clear.js
index c64c092..d563501 100644
--- a/commands/utility/clear.js
+++ b/commands/utility/clear.js
@@ -29,19 +29,19 @@ module.exports = class ClearUtility extends Command {
async run(msg, { deleteAmount }) {
if (msg.member.hasPermission('MANAGE_MESSAGES')) {
if (!deleteAmount) {
- msg.reply('you haven\'t specified an amount of messages which should be deleted.').then(deleteNotificationMessage => {
+ msg.reply('you haven\'t specified an amount of messages which should be deleted. ' + emoji.random()).then(deleteNotificationMessage => {
deleteNotificationMessage.delete({ timeout: 1000 });
});
} else if (isNaN(deleteAmount)) {
- msg.reply('the amount parameter isn\'t a number.').then(deleteNotificationMessage => {
+ msg.reply('the amount parameter isn\'t a number. ' + emoji.random()).then(deleteNotificationMessage => {
deleteNotificationMessage.delete({ timeout: 1000 });
});
} else if (deleteAmount > 100) {
- msg.reply('you can\'t delete more than 100 messages at once.').then(deleteNotificationMessage => {
+ msg.reply('you can\'t delete more than 100 messages at once. ' + emoji.random()).then(deleteNotificationMessage => {
deleteNotificationMessage.delete({ timeout: 1000 });
});
} else if (deleteAmount < 1) {
- msg.reply('you have to delete at least 1 message.').then(deleteNotificationMessage => {
+ msg.reply('you have to delete at least 1 message. ' + emoji.random()).then(deleteNotificationMessage => {
deleteNotificationMessage.delete({ timeout: 1000 });
});
}
@@ -64,7 +64,7 @@ module.exports = class ClearUtility extends Command {
});
}
} else {
- msg.reply('insufficent perms bruh');
+ msg.reply('insufficent perms bruh ' + emoji.random());
}
}
}; \ No newline at end of file