From 8d0ee155638f3c1ad5f2bd9cbc533a88e9322a67 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 30 Jun 2022 13:10:37 -0400 Subject: [PATCH] Delete dimensions along with Bramble --- NewHorizons/Utility/AstroObjectLocator.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/NewHorizons/Utility/AstroObjectLocator.cs b/NewHorizons/Utility/AstroObjectLocator.cs index d2d87554..c03449b3 100644 --- a/NewHorizons/Utility/AstroObjectLocator.cs +++ b/NewHorizons/Utility/AstroObjectLocator.cs @@ -131,6 +131,15 @@ namespace NewHorizons.Utility case AstroObject.Name.MapSatellite: otherChildren.Add(SearchUtilities.Find("HearthianRecorder_Body")); break; + case AstroObject.Name.DarkBramble: + otherChildren.Add(SearchUtilities.Find("DB_ClusterDimension_Body")); + otherChildren.Add(SearchUtilities.Find("DB_VesselDimension_Body")); + otherChildren.Add(SearchUtilities.Find("DB_PioneerDimension_Body")); + otherChildren.Add(SearchUtilities.Find("DB_HubDimension_Body")); + otherChildren.Add(SearchUtilities.Find("DB_ExitOnlyDimension_Body")); + otherChildren.Add(SearchUtilities.Find("DB_EscapePodDimension_Body")); + otherChildren.Add(SearchUtilities.Find("DB_AnglerNestDimension_Body")); + break; // For some dumb reason the sun station doesn't use AstroObject.Name.SunStation case AstroObject.Name.CustomString: if (primary._customName.Equals("Sun Station"))