Merge remote-tracking branch 'public/bugfix/easter-egg-crash' into bugfix/public-fixes

This commit is contained in:
EliteMasterEric 2024-05-09 16:40:11 -04:00
commit 3207fd82f3
1 changed files with 3 additions and 1 deletions

View File

@ -83,6 +83,8 @@ class GameOverSubState extends MusicBeatSubState
var isChartingMode:Bool = false;
var mustNotExit:Bool = false;
var transparent:Bool;
static final CAMERA_ZOOM_DURATION:Float = 0.5;
@ -240,7 +242,7 @@ class GameOverSubState extends MusicBeatSubState
}
// KEYBOARD ONLY: Return to the menu when pressing the assigned key.
if (controls.BACK)
if (controls.BACK && !mustNotExit)
{
blueballed = false;
PlayState.instance.deathCounter = 0;