Skip to content

Commit

Permalink
lol
Browse files Browse the repository at this point in the history
  • Loading branch information
theDetourist authored Apr 23, 2021
1 parent ec0db9e commit fec193f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fec193f

Please sign in to comment.