version update and fixes

This commit is contained in:
KadeDev
2021-04-02 17:21:19 -07:00
parent 8a95be0b5f
commit 5928783520
7 changed files with 19 additions and 10 deletions

View File

@ -109,7 +109,13 @@ class PauseSubState extends MusicBeatSubstate
FlxG.resetState();
case "Exit to menu":
PlayState.loadRep = false;
FlxG.switchState(new MainMenuState());
if (PlayState.offsetTesting)
{
PlayState.offsetTesting = false;
FlxG.switchState(new OptionsMenu());
}
else
FlxG.switchState(new MainMenuState());
}
}