mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-25 16:24:40 +00:00
hold note balance shit lol! unrelated to polymod!!
This commit is contained in:
parent
9dcffaa3fa
commit
ef665df9d0
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue