diff --git a/NewHorizons/Builder/Props/BrambleNodeBuilder.cs b/NewHorizons/Builder/Props/BrambleNodeBuilder.cs index 95f25549..3e5437e7 100644 --- a/NewHorizons/Builder/Props/BrambleNodeBuilder.cs +++ b/NewHorizons/Builder/Props/BrambleNodeBuilder.cs @@ -402,6 +402,11 @@ namespace NewHorizons.Builder.Props signalGO.GetComponent()._sourceRadius = 1; signalGO.transform.position = brambleNode.transform.position; signalGO.transform.parent = brambleNode.transform; + + //Don't need the unknown signal detection bits + Component.Destroy(signalGO.GetComponent()); + Component.Destroy(signalGO.GetComponent()); + Component.Destroy(signalGO.GetComponent()); } } diff --git a/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs b/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs index 1f684e7c..12a37e8e 100644 --- a/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs +++ b/NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs @@ -29,7 +29,7 @@ namespace NewHorizons.Patches.ShipLogPatches 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 @@ namespace NewHorizons.Patches.ShipLogPatches } } } -} \ No newline at end of file +} diff --git a/NewHorizons/manifest.json b/NewHorizons/manifest.json index af88a07c..30dd04ed 100644 --- a/NewHorizons/manifest.json +++ b/NewHorizons/manifest.json @@ -4,9 +4,10 @@ "author": "xen, Bwc9876, clay, MegaPiggy, John, Trifid, Hawkbar, Book", "name": "New Horizons", "uniqueName": "xen.NewHorizons", - "version": "1.18.2", + "version": "1.18.3", "owmlVersion": "2.9.8", "dependencies": [ "JohnCorby.VanillaFix", "_nebula.MenuFramework", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ], "conflicts": [ "Raicuparta.QuantumSpaceBuddies", "PacificEngine.OW_CommonResources" ], - "pathsToPreserve": [ "planets", "systems", "translations" ] + "pathsToPreserve": [ "planets", "systems", "translations" ], + "donateLink": "https://www.patreon.com/ownh" }