1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/commands/join.js

24 lines
874 B
JavaScript
Raw Normal View History

2020-02-05 20:02:53 +00:00
module.exports = {
name: 'join',
alias: 'j',
2020-02-24 18:41:40 +00:00
usage: '',
2020-02-05 20:02:53 +00:00
description: 'Make Musix join the channel your channel',
2020-02-10 19:04:42 +00:00
onlyDev: true,
2020-02-05 20:02:53 +00:00
permission: 'none',
category: 'util',
2020-03-14 16:38:02 +00:00
async execute(msg, args, client, Discord, prefix, command) {
2020-02-05 20:02:53 +00:00
try {
2020-03-14 16:38:02 +00:00
const queue = client.queue.get(msg.guild.id);
2020-02-05 20:02:53 +00:00
const voiceChannel = msg.member.voice.channel;
const connection = await voiceChannel.join();
2020-03-14 16:38:02 +00:00
if (queue) {
queue.connection = connection;
2020-02-05 20:02:53 +00:00
}
2020-03-12 11:56:31 +00:00
msg.channel.send(`${client.messages.joined} ${voiceChannel.name}!`);
2020-02-05 20:02:53 +00:00
} catch (error) {
client.queue.delete(msg.guild.id);
2020-03-12 11:56:31 +00:00
client.channels.get(client.config.debug_channel).send(client.messages.errorConnecting + error);
return msg.channel.send(client.messages.error);
2020-02-05 20:02:53 +00:00
}
}
};