mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-01-07 05:22:11 -05:00
Fix crash after pressing F5 and coming back from stickers
This commit is contained in:
parent
9908f973cf
commit
73efd963b9
2 changed files with 2 additions and 2 deletions
|
@ -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