diff --git a/commands/music/join.js b/commands/music/join.js index 4c2f0db..1a6076b 100644 --- a/commands/music/join.js +++ b/commands/music/join.js @@ -17,7 +17,7 @@ module.exports = class JoinCommand extends Command { if (!voiceChannel) return message.reply('you need to join a channel!'); - const connection = await voiceChannel.join(); + await voiceChannel.join(); return message.say('joined!'); }