1
0
Fork 0

Added message when bot leave channel

Commando
Loic Bersier 6 years ago
parent c5938e6fac
commit a551d6b4ae

@ -31,12 +31,14 @@ module.exports = class MusicCommand extends Command {
// If user say "stop" make the bot leave voice channel
if (ytblink == 'stop') {
voiceChannel.leave()
message.say('I leaved the channel');
} else
voiceChannel.join().then(connection => {
const stream = ytdl(ytblink, { filter: 'audioonly' });
const dispatcher = connection.playStream(stream);
// End at then end of the audio stream
dispatcher.on('end', () => voiceChannel.leave());
message.say('Music ended, Leaved the channel');
});
}
}
Loading…
Cancel
Save