Turn off only star for proxies

This commit is contained in:
Noah Pilarski 2022-08-20 01:43:04 -04:00
parent 9536fd08cb
commit 91b3ec7f44

View File

@ -266,7 +266,10 @@ namespace NewHorizons.Components.SizeControllers
if (controller != null) StarLightController.RemoveStar(controller);
// Just turn off the star entirely
transform.parent.gameObject.SetActive(false);
if (_isProxy)
gameObject.SetActive(false);
else
transform.parent.gameObject.SetActive(false); // Turn off sector
if (_stellarRemnantController != null) _stellarRemnantController.FullyActivate();