summaryrefslogtreecommitdiff
path: root/commands/join.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-10 10:16:53 -0700
committer8cy <[email protected]>2020-04-10 10:16:53 -0700
commit4b308538961facb87d73fafeab7fab5927562eff (patch)
tree8eaf88c074c379d76e7932e6fc3f32c05adb70ca /commands/join.js
parentrework reboot, work on itemshop, v1.5.2 (diff)
downloads5nical-4b308538961facb87d73fafeab7fab5927562eff.tar.xz
s5nical-4b308538961facb87d73fafeab7fab5927562eff.zip
port to commando/ v12, 2.0.0
ported everything over to v12 and then commando in the span of 2 days no sleep lol. also now using typescript standard for cool 8)
Diffstat (limited to 'commands/join.js')
-rw-r--r--commands/join.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/commands/join.js b/commands/join.js
deleted file mode 100644
index b07e6c7..0000000
--- a/commands/join.js
+++ /dev/null
@@ -1,15 +0,0 @@
-module.exports = {
- name: 'join',
- aliases: ['j'],
- description: '',
- execute(msg, args, bot) {
- if (!msg.guild.voiceConnection && msg.member.voiceChannel) {
- msg.member.voiceChannel.join();
- msg.reply('succesfully joined voice channel');
- } else if (msg.guild.voiceConnection) {
- msg.reply('i\'m already in voice channel');
- } else if (!msg.member.voiceChannel) {
- msg.reply('you\'re not in a voice channel');
- }
- }
-}; \ No newline at end of file