From 10b2c5eb148867a29741fadf60bd87e52c5917c4 Mon Sep 17 00:00:00 2001 From: Snirozu <72814880+Snirozu@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:59:49 +0200 Subject: [PATCH] fix gf note miss animations --- source/states/PlayState.hx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/states/PlayState.hx b/source/states/PlayState.hx index 8541d2f6..76bfdf19 100644 --- a/source/states/PlayState.hx +++ b/source/states/PlayState.hx @@ -3987,7 +3987,10 @@ class PlayState extends MusicBeatState // play character anims var char:Character = getPlayer(); - if((note != null && note.gfNote) || (SONG.notes[curSection] != null && SONG.notes[curSection].gfSection)) char = gf; + if ((SONG.notes[curSection] != null && (SONG.notes[curSection].mustHitSection ? playsAsBF() : !playsAsBF()) && SONG.notes[curSection].gfSection) + || (note != null && note.gfNote)) { + char = gf; + } if(char != null /*&& char.hasMissAnimations*/) {