1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +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:
Cameron Taylor 2024-07-01 20:19:09 -04:00 committed by GitHub
commit bb1fc64754
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}