summaryrefslogtreecommitdiff
path: root/commands/utility/reboot.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/utility/reboot.js')
-rw-r--r--commands/utility/reboot.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/utility/reboot.js b/commands/utility/reboot.js
index 031ff08..931f0db 100644
--- a/commands/utility/reboot.js
+++ b/commands/utility/reboot.js
@@ -1,4 +1,5 @@
const { Command } = require('discord.js-commando');
+const emoji = require('emoji-random');
module.exports = class RebootUtility extends Command {
constructor(client) {
@@ -25,14 +26,14 @@ module.exports = class RebootUtility extends Command {
} else if (!msg.guild.voice) {
msg.member.voice.channel.join();
msg.member.voice.channel.leave();
- msg.reply('voice module reboot finished lol');
+ msg.reply('voice module reboot finished lol' + emoji.random());
} else if (msg.guild.voice) {
msg.member.voice.channel.leave();
msg.member.voice.channel.join();
- msg.reply('voice module reboot finished lol');
+ msg.reply('voice module reboot finished lol' + emoji.random());
}
} else if (module == 'commands' || module == 'commands' || module == 'cmds' || module == 'cmd' || module == 'c') {
- msg.reply('commands module reboot finished lol');
+ msg.reply('commands module reboot finished lol' + emoji.random());
} else if (!args.length) {
msg.reply('no module(s) specified');
}