diff --git a/app.js b/app.js index 4f4b6e9..4a9b8c6 100644 --- a/app.js +++ b/app.js @@ -49,7 +49,7 @@ client.on('voiceStateUpdate', (bef, aft) => { if (!aft.channel || !aft.guild.voice || aft.member.user === client.user) return; if (!aft.guild.voice.connection) return; if (aft.mute && !aft.deaf) { - const disp = aft.guild.voice.connection.play('./zvuky/neodposlouchavej.ogg'); + const disp = aft.guild.voice.connection.play('./zvuky/neodposlouchavej.ogg', { volume: 0.38 }); disp.on('finish', () => aft.setDeaf(true, 'otposlouchávala ta gadza')); }