Delete dimensions along with Bramble

This commit is contained in:
Nick 2022-06-30 13:10:37 -04:00
parent ac49899670
commit 8d0ee15563

View File

@ -131,6 +131,15 @@ namespace NewHorizons.Utility
case AstroObject.Name.MapSatellite: case AstroObject.Name.MapSatellite:
otherChildren.Add(SearchUtilities.Find("HearthianRecorder_Body")); otherChildren.Add(SearchUtilities.Find("HearthianRecorder_Body"));
break; 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 // For some dumb reason the sun station doesn't use AstroObject.Name.SunStation
case AstroObject.Name.CustomString: case AstroObject.Name.CustomString:
if (primary._customName.Equals("Sun Station")) if (primary._customName.Equals("Sun Station"))