Files
discord-bot/commands/join.js
T
2020-04-29 10:46:29 +01:00

13 lines
364 B
JavaScript

module.exports = {
name: 'join',
description: 'joins a voice channel',
execute: async(message, args) => {
const voiceChannel = message.member.voice.channel;
if (!voiceChannel) return message.reply('you need to join a channel!');
connection = await voiceChannel.join();
return message.channel.send('joined!');
}
};