mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-11-26 06:09:02 +00:00
Merge pull request #647 from FunkinCrew/gamerbross/stickers-f5-screen
[PUBLIC PR] Fix crash after pressing F5 and coming back from stickers
This commit is contained in:
commit
bb1fc64754
|
|
@ -214,7 +214,7 @@ class FreeplayState extends MusicBeatSubState
|
||||||
prepForNewRank = true;
|
prepForNewRank = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stickers != null)
|
if (stickers?.members != null)
|
||||||
{
|
{
|
||||||
stickerSubState = stickers;
|
stickerSubState = stickers;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ class StoryMenuState extends MusicBeatState
|
||||||
{
|
{
|
||||||
super();
|
super();
|
||||||
|
|
||||||
if (stickers != null)
|
if (stickers?.members != null)
|
||||||
{
|
{
|
||||||
stickerSubState = stickers;
|
stickerSubState = stickers;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue