diff --git a/NewHorizons/Components/SizeControllers/StarEvolutionController.cs b/NewHorizons/Components/SizeControllers/StarEvolutionController.cs index 1f2605d2..00c479f1 100644 --- a/NewHorizons/Components/SizeControllers/StarEvolutionController.cs +++ b/NewHorizons/Components/SizeControllers/StarEvolutionController.cs @@ -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();