fixedw options

This commit is contained in:
Kade M 2021-06-19 15:51:41 -07:00
parent 2c59c26ef6
commit 451bf58b04

View File

@ -2627,7 +2627,13 @@ class PlayState extends MusicBeatState
FlxG.sound.music.stop(); FlxG.sound.music.stop();
vocals.stop(); vocals.stop();
openSubState(new ResultsScreen()); if (FlxG.save.data.scoreScreen)
openSubState(new ResultsScreen());
else
{
FlxG.sound.playMusic(Paths.music('freakyMenu'));
FlxG.switchState(new MainMenuState());
}
#if windows #if windows
if (luaModchart != null) if (luaModchart != null)
@ -2696,7 +2702,10 @@ class PlayState extends MusicBeatState
FlxG.sound.music.stop(); FlxG.sound.music.stop();
vocals.stop(); vocals.stop();
openSubState(new ResultsScreen()); if (FlxG.save.data.scoreScreen)
openSubState(new ResultsScreen());
else
FlxG.switchState(new PlayState());
} }
} }
} }