This commit is contained in:
KadeDeveloper
2021-07-20 14:13:16 -07:00
parent 1ade5d47e3
commit 9248947e52
2 changed files with 1 additions and 9 deletions

View File

@ -4425,7 +4425,7 @@ class PlayState extends MusicBeatState
// Dad doesnt interupt his own notes
if ((SONG.notes[Math.floor(curStep / 16)].mustHitSection || !dad.animation.curAnim.name.startsWith("sing")) && dad.curCharacter != 'gf')
if (curBeat % idleBeat == 0)
if (curBeat % idleBeat == 0 || dad.curCharacter == "spooky")
dad.dance(idleToBeat);
}
// FlxG.log.add('change bpm' + SONG.notes[Std.int(curStep / 16)].changeBPM);