From ef665df9d044d398fd5cacb4be2353a0ba73c2e1 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Wed, 9 Mar 2022 15:04:35 -0500 Subject: [PATCH] hold note balance shit lol! unrelated to polymod!! --- source/funkin/play/PlayState.hx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index ea99c39cc..f7ceaea64 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -1928,7 +1928,9 @@ class PlayState extends MusicBeatState { curStage.onNoteMiss(daNote); } - health -= 0.0775; + + // lose less health on sustain notes! + health -= 0.0775 * (daNote.isSustainNote ? 0.2 : 1); // if it's sustain, multiply it by 0.2 (not checked for balence yet), else keep it same (multiply by 1) vocals.volume = 0; killCombo(); }