From 778ccfadf34e56bc0032cf6633e6241415a5baa2 Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Thu, 11 Aug 2022 16:13:32 -0400 Subject: [PATCH] Also check for EYEOFTHEUNIVERSE --- NewHorizons/Utility/AstroObjectLocator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Utility/AstroObjectLocator.cs b/NewHorizons/Utility/AstroObjectLocator.cs index e3ab7bee..93fe47d0 100644 --- a/NewHorizons/Utility/AstroObjectLocator.cs +++ b/NewHorizons/Utility/AstroObjectLocator.cs @@ -35,7 +35,7 @@ namespace NewHorizons.Utility if (stringID.Equals("ASH_TWIN")) stringID = "TOWER_TWIN"; if (stringID.Equals("EMBER_TWIN")) stringID = "CAVE_TWIN"; if (stringID.Equals("INTERLOPER")) stringID = "COMET"; - if (stringID.Equals("EYE")) stringID = "EYE_OF_THE_UNIVERSE"; + if (stringID.Equals("EYE") || stringID.Equals("EYEOFTHEUNIVERSE")) stringID = "EYE_OF_THE_UNIVERSE"; string key; if (stringID.ToUpper().Replace("_", "").Equals("MAPSATELLITE"))