From c4364633a89bd7a04f1cf6144985f40766c9a88b Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Fri, 1 May 2020 08:46:48 +0100 Subject: [PATCH] edited the join command --- commands/music/join.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!'); }