forked from Supositware/Haha-Yes
This commit is contained in:
parent
f1fc195897
commit
d9f33d3368
1 changed files with 3 additions and 4 deletions
|
@ -20,17 +20,16 @@ module.exports = class MusicCommand extends Command {
|
|||
run(message, { ytblink }) {
|
||||
const { voiceChannel } = message.member;
|
||||
|
||||
if (ytblink == 'stop') {
|
||||
voiceChannel.leave()
|
||||
} else
|
||||
if (!voiceChannel) {
|
||||
return message.reply('please join a voice channel first!');
|
||||
}
|
||||
|
||||
voiceChannel.join().then(connection => {
|
||||
const stream = ytdl(ytblink, { filter: 'audioonly' });
|
||||
const dispatcher = connection.playStream(stream);
|
||||
|
||||
if (ytblink == 'stop') {
|
||||
voiceChannel.leave()
|
||||
} else
|
||||
|
||||
dispatcher.on('end', () => voiceChannel.leave());
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue