From cb37b2af890f50e14540369fdbcd0338c15f206b Mon Sep 17 00:00:00 2001 From: gamerbross <55158797+gamerbross@users.noreply.github.com> Date: Fri, 12 Jul 2024 08:05:42 +0200 Subject: [PATCH] Remove unnecessary player vocals muting --- source/funkin/play/PlayState.hx | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index f55cef388..4b87fa797 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -2525,7 +2525,6 @@ class PlayState extends MusicBeatSubState }); } } - vocals.playerVolume = 0; if (Highscore.tallies.combo != 0) if (Highscore.tallies.combo >= 10) comboPopUps.displayCombo(0); @@ -2588,7 +2587,6 @@ class PlayState extends MusicBeatSubState if (event.playSound) { - vocals.playerVolume = 0; FunkinSound.playOnce(Paths.soundRandom('missnote', 1, 3), FlxG.random.float(0.1, 0.2)); } }