## Bug Fixes:
- Fixed an issue where Bramble-propagated signals would have a detection
area (thanks @coderCleric!)
- Exhibitions in the museum on the Eye correctly reflect the ship log
(thanks orclecle @TRSasasusu!)
This commit is contained in:
xen-42 2024-02-02 11:59:48 -05:00 committed by GitHub
commit c5847b468f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 4 deletions

View File

@ -402,6 +402,11 @@ namespace NewHorizons.Builder.Props
signalGO.GetComponent<AudioSignal>()._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<AudioSignalDetectionTrigger>());
Component.Destroy(signalGO.GetComponent<OWTriggerVolume>());
Component.Destroy(signalGO.GetComponent<SphereShape>());
}
}

View File

@ -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<ShipLogEntryLocation>())
@ -127,4 +127,4 @@ namespace NewHorizons.Patches.ShipLogPatches
}
}
}
}
}

View File

@ -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"
}