Skip to content

Commit

Permalink
1.18.3 (#768)
Browse files Browse the repository at this point in the history
## 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!)
  • Loading branch information
xen-42 committed Feb 2, 2024
2 parents 746519c + d71dc6c commit c5847b4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions NewHorizons/Builder/Props/BrambleNodeBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,11 @@ public static GameObject Make(GameObject go, Sector sector, BrambleNodeInfo conf
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>());
}
}

Expand Down
4 changes: 2 additions & 2 deletions NewHorizons/Patches/ShipLogPatches/ShipLogManagerPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<ShipLogEntryLocation>())
Expand Down Expand Up @@ -127,4 +127,4 @@ public static bool ShipLogManager_Start(ShipLogManager __instance)
}
}
}
}
}
5 changes: 3 additions & 2 deletions NewHorizons/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit c5847b4

Please sign in to comment.