summaryrefslogtreecommitdiff
path: root/commands/reboot.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-07 10:21:53 -0700
committer8cy <[email protected]>2020-04-07 10:21:53 -0700
commit3c8023f23931f8573bdf27ed8f3e674c04ff7eaa (patch)
treeade3a418304befa9f8576128ea7dc595b590273e /commands/reboot.js
parentadd yt test, 1.3.0 (diff)
downloads5nical-3c8023f23931f8573bdf27ed8f3e674c04ff7eaa.tar.xz
s5nical-3c8023f23931f8573bdf27ed8f3e674c04ff7eaa.zip
port all the stuff from app.js to commands/
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..b9fc6aa
--- /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