diff --git a/NewHorizons/Utility/AstroObjectLocator.cs b/NewHorizons/Utility/AstroObjectLocator.cs index c4c9779f..8d33aa59 100644 --- a/NewHorizons/Utility/AstroObjectLocator.cs +++ b/NewHorizons/Utility/AstroObjectLocator.cs @@ -131,7 +131,8 @@ namespace NewHorizons.Utility case AstroObject.Name.CustomString: if (primary._customName.Equals("Sun Station")) { - otherChildren.Add(GameObject.Find("SS_Debris_Body")); + // there are multiple debris with the same name + otherChildren.AddRange(GameObject.FindObjectsOfType().Where(x => x.name == "SS_Debris_Body")); } break; default: