mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-01-08 05:52:16 -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;
|
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