mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 10:05:41 -05:00
Fix issue causing crash on F5
This commit is contained in:
parent
697be2c88c
commit
5ae2bc814b
1 changed files with 10 additions and 6 deletions
|
@ -649,16 +649,20 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass
|
||||||
}
|
}
|
||||||
boppers = [];
|
boppers = [];
|
||||||
|
|
||||||
for (sprite in this.group)
|
if (group != null)
|
||||||
{
|
{
|
||||||
if (sprite != null)
|
for (sprite in this.group)
|
||||||
{
|
{
|
||||||
sprite.kill();
|
if (sprite != null)
|
||||||
sprite.destroy();
|
{
|
||||||
remove(sprite);
|
sprite.kill();
|
||||||
|
sprite.destroy();
|
||||||
|
remove(sprite);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
group.clear();
|
||||||
}
|
}
|
||||||
group.clear();
|
|
||||||
if (debugIconGroup != null && debugIconGroup.group != null)
|
if (debugIconGroup != null && debugIconGroup.group != null)
|
||||||
{
|
{
|
||||||
debugIconGroup.kill();
|
debugIconGroup.kill();
|
||||||
|
|
Loading…
Reference in a new issue