default to 50% user volume

This commit is contained in:
Lukáš Horáček 2020-04-12 10:47:48 +02:00
parent b254495fd3
commit 8325891854
No known key found for this signature in database
GPG Key ID: E07D6630DBC17195
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ module.exports = client => {
let v = guild.queue[0];
guild.dispatcher = connection.play(await ytdl(client.music.getLinkFromID(v.video.id.videoId)), {type: 'opus'});
guild.dispatcher.setVolume(0.5);
guild.dispatcher.setVolume(0.25);
message.reply('playing **' + v.video.snippet.title + '**');
};