summaryrefslogtreecommitdiff
path: root/commands/reboot.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/reboot.js')
-rw-r--r--commands/reboot.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/commands/reboot.js b/commands/reboot.js
new file mode 100644
index 0000000..f5ec9eb
--- /dev/null
+++ b/commands/reboot.js
@@ -0,0 +1,10 @@
+module.exports = {
+ name: 'reboot',
+ aliases: ['r'],
+ description: '',
+ execute(msg, args, bot) {
+ msg.member.voiceChannel.join();
+ msg.member.voiceChannel.leave();
+ msg.reply('reboot finished lol');
+ }
+}; \ No newline at end of file