diff --git a/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs b/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs index 1f684e7cd..12a37e8ec 100644 --- a/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs +++ b/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs @@ -29,7 +29,7 @@ public static void ShipLogManager_Awake_Prefix(ShipLogManager __instance) NHLogger.Log($"Beginning Ship Log Generation For: {currentStarSystem}"); - if (currentStarSystem != "SolarSystem") + if (currentStarSystem != "SolarSystem" && currentStarSystem != "EyeOfTheUniverse") { __instance._shipLogXmlAssets = new TextAsset[] { }; foreach (ShipLogEntryLocation logEntryLocation in Object.FindObjectsOfType()) @@ -127,4 +127,4 @@ public static bool ShipLogManager_Start(ShipLogManager __instance) } } } -} \ No newline at end of file +}