From f4bc2f1aa77010921b521daf7f4a17450f9ec397 Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Sat, 15 Jun 2024 02:40:52 -0400 Subject: [PATCH] Add vessel to eye children --- NewHorizons/Utility/OuterWilds/AstroObjectLocator.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NewHorizons/Utility/OuterWilds/AstroObjectLocator.cs b/NewHorizons/Utility/OuterWilds/AstroObjectLocator.cs index c20aa7b6..9e3a8a01 100644 --- a/NewHorizons/Utility/OuterWilds/AstroObjectLocator.cs +++ b/NewHorizons/Utility/OuterWilds/AstroObjectLocator.cs @@ -164,6 +164,9 @@ namespace NewHorizons.Utility.OuterWilds .Select(x => x.gameObject) .Where(x => x.name == "SS_Debris_Body")); break; + case AstroObject.Name.Eye: + otherChildren.Add(SearchUtilities.Find("Vessel_Body")); + break; // Just in case GetChildren runs before sun station's name is changed case AstroObject.Name.CustomString: if (primary._customName.Equals("Sun Station"))