fixed reply softlock death

This commit is contained in:
KadeDev 2021-03-09 15:38:38 -08:00
parent 3511031759
commit 6d16b576f4
2 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,7 @@ class GameOverSubstate extends MusicBeatSubstate
FlxG.switchState(new StoryMenuState());
else
FlxG.switchState(new FreeplayState());
PlayState.loadRep = false;
}
if (bf.animation.curAnim.name == 'firstDeath' && bf.animation.curAnim.curFrame == 12)

View File

@ -108,6 +108,7 @@ class PauseSubState extends MusicBeatSubstate
case "Restart Song":
FlxG.resetState();
case "Exit to menu":
PlayState.loadRep = false;
FlxG.switchState(new MainMenuState());
}
}