edited the join command

This commit is contained in:
Hazem Krimi
2020-05-01 08:46:48 +01:00
parent e6fa16251f
commit c4364633a8
+1 -1
View File
@@ -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!');
}