1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +00:00

Fix crash after pressing F5 and coming back from stickers

This commit is contained in:
gamerbross 2024-06-20 07:24:36 +02:00 committed by EliteMasterEric
parent dd30012d80
commit 32deb8d190
2 changed files with 2 additions and 2 deletions

View file

@ -214,7 +214,7 @@ class FreeplayState extends MusicBeatSubState
prepForNewRank = true;
}
if (stickers != null)
if (stickers?.members != null)
{
stickerSubState = stickers;
}

View file

@ -113,7 +113,7 @@ class StoryMenuState extends MusicBeatState
{
super();
if (stickers != null)
if (stickers?.members != null)
{
stickerSubState = stickers;
}