From 10df1d293723608b1e5008ea05df8aa4d3670720 Mon Sep 17 00:00:00 2001 From: Detoria <44783518+theDetourist@users.noreply.github.com> Date: Fri, 23 Apr 2021 20:45:41 -0300 Subject: [PATCH] lol --- source/PlayState.hx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/PlayState.hx b/source/PlayState.hx index d3fb507ef1..a43bd9a1f6 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -3881,7 +3881,15 @@ class PlayState extends MusicBeatState // Conductor.changeBPM(SONG.bpm); // Dad doesnt interupt his own notes - if (SONG.notes[Math.floor(curStep / 16)].mustHitSection) + + // Commented out until a reason to bring this back arises in the future + /* if (SONG.notes[Math.floor(curStep / 16)].mustHitSection) + dad.dance(); */ + + if(dad.animation.curAnim.name.startsWith('sing')) + if(dad.animation.finished) + dad.dance(); + else dad.dance(); } // FlxG.log.add('change bpm' + SONG.notes[Std.int(curStep / 16)].changeBPM);