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:
parent
dd30012d80
commit
32deb8d190
|
@ -214,7 +214,7 @@ class FreeplayState extends MusicBeatSubState
|
|||
prepForNewRank = true;
|
||||
}
|
||||
|
||||
if (stickers != null)
|
||||
if (stickers?.members != null)
|
||||
{
|
||||
stickerSubState = stickers;
|
||||
}
|
||||
|
|
|
@ -113,7 +113,7 @@ class StoryMenuState extends MusicBeatState
|
|||
{
|
||||
super();
|
||||
|
||||
if (stickers != null)
|
||||
if (stickers?.members != null)
|
||||
{
|
||||
stickerSubState = stickers;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue