diff --git a/source/PlayState.hx b/source/PlayState.hx index 6541cfb..6e51302 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -2811,7 +2811,7 @@ class PlayState extends MusicBeatState else health = 1; } - if (FlxG.save.data.resetButton) + if (!inCutscene && FlxG.save.data.resetButton) { if (FlxG.keys.justPressed.R) { diff --git a/source/StoryMenuState.hx b/source/StoryMenuState.hx index daee617..ce2d49d 100644 --- a/source/StoryMenuState.hx +++ b/source/StoryMenuState.hx @@ -101,7 +101,10 @@ class StoryMenuState extends MusicBeatState if (FlxG.sound.music != null) { if (!FlxG.sound.music.playing) + { FlxG.sound.playMusic(Paths.music('freakyMenu')); + Conductor.changeBPM(102); + } } persistentUpdate = persistentDraw = true;