diff --git a/source/ChartingState.hx b/source/ChartingState.hx index b8ddf75..a2d76a3 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1935,14 +1935,6 @@ class ChartingState extends MusicBeatState } } - if (FlxG.keys.justPressed.R) - { - if (FlxG.keys.pressed.SHIFT) - resetSection(true); - else - resetSection(); - } - if (FlxG.sound.music.time < 0 || curDecimalBeat < 0) FlxG.sound.music.time = 0; diff --git a/source/PlayState.hx b/source/PlayState.hx index edbfe06..816083d 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -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);