Skip to content

Commit

Permalink
1.24.1 (#980)
Browse files Browse the repository at this point in the history
- Fixed an Outsider-compatibility bug accidentally introduced by an old
Outsider-compatibility fix (affected The Vision)
  • Loading branch information
xen-42 authored Oct 25, 2024
2 parents 0646e5f + 8c809e8 commit 3c9ea2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NewHorizons/Builder/Props/Audio/SignalBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public static GameObject Make(GameObject planetGO, Sector sector, SignalInfo inf
audioSignal._identificationDistance = info.identificationRadius;
audioSignal._canBePickedUpByScope = true;
// The outsider adds outer fog warp volumes to Bramble which break any signals NH places there
if (Main.Instance.ModHelper.Interaction.ModExists("SBtT.TheOutsider") && planetGO.GetComponent<AstroObject>()._name == AstroObject.Name.DarkBramble)
if (Main.Instance.ModHelper.Interaction.ModExists("SBtT.TheOutsider") && planetGO?.GetComponent<AstroObject>()?._name == AstroObject.Name.DarkBramble)
{
audioSignal._outerFogWarpVolume = null;
}
Expand Down
2 changes: 1 addition & 1 deletion NewHorizons/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "xen, Bwc9876, JohnCorby, MegaPiggy, Trifid, and friends",
"name": "New Horizons",
"uniqueName": "xen.NewHorizons",
"version": "1.24.0",
"version": "1.24.1",
"owmlVersion": "2.12.1",
"dependencies": [ "JohnCorby.VanillaFix", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ],
"conflicts": [ "PacificEngine.OW_CommonResources" ],
Expand Down

0 comments on commit 3c9ea2e

Please sign in to comment.