mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
1.18.3 (#768)
## 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:
commit
c5847b468f
@ -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>());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user