music stuff

This commit is contained in:
Lukáš Horáček 2020-04-11 16:30:08 +02:00
parent 5ae1ede3f3
commit 079bcd50a1
No known key found for this signature in database
GPG Key ID: E07D6630DBC17195
1 changed files with 6 additions and 2 deletions

View File

@ -120,8 +120,12 @@ module.exports = client => {
let connection = await vc.join();
guild.dispatcher = connection.play(await ytdl(client.music.getLinkFromID(guild.queue[0].video.id.videoId)), {type: 'opus'});
guild.dispatcher.setVolume(0.5);
let v = guild.queue[0];
guild.dispatcher = connection.play(await ytdl(client.music.getLinkFromID(v.video.id.videoId)), {type: 'opus'});
guild.dispatcher.setVolume(0.3);
message.reply('playing **' + v.video.snippet.title + '**');
};
} else {
return message.member.reply('failed to find the video!');