Use stickers to transition from the Results state

This commit is contained in:
EliteMasterEric 2024-02-12 23:34:51 -05:00
parent 1b5b7f0ae2
commit 0ff258ce75

View file

@ -352,11 +352,11 @@ class ResultState extends MusicBeatSubState
{ {
if (params.storyMode) if (params.storyMode)
{ {
FlxG.switchState(() -> new StoryMenuState()); openSubState(new funkin.ui.transition.StickerSubState(null, (sticker) -> new funkin.ui.story.StoryMenuState(sticker)));
} }
else else
{ {
FlxG.switchState(() -> new FreeplayState()); openSubState(new funkin.ui.transition.StickerSubState(null, (sticker) -> new funkin.ui.story.FreeplayState(null, sticker)));
} }
} }