2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 09:47:43 +00:00

Fix disappearing actor issue

This commit is contained in:
Jack Andersen
2018-03-04 13:23:21 -10:00
parent 055de86170
commit 017185109f
5 changed files with 9 additions and 11 deletions

View File

@@ -1965,7 +1965,7 @@ bool CElementGen::IsSystemDeletable() const
rstl::optional_object<zeus::CAABox> CElementGen::GetBounds() const
{
if (GetParticleCountAll() == 0)
return {zeus::CAABox()};
return {};
else
return {x2f0_systemBounds};
}