forked from Supositware/Haha-Yes
Added message when bot leave channel
This commit is contained in:
parent
c5938e6fac
commit
a551d6b4ae
1 changed files with 2 additions and 0 deletions
|
@ -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…
Reference in a new issue