From 9248947e527ddb07b1ad8945b97b38aaf77e4b22 Mon Sep 17 00:00:00 2001 From: KadeDeveloper Date: Tue, 20 Jul 2021 14:13:16 -0700 Subject: [PATCH] remove R --- source/ChartingState.hx | 8 -------- source/PlayState.hx | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) 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);