- Fixed an Outsider-compatibility bug accidentally introduced by an old
Outsider-compatibility fix (affected The Vision)
This commit is contained in:
xen-42 2024-10-24 21:14:45 -04:00 committed by GitHub
commit 3c9ea2e7ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ namespace NewHorizons.Builder.Props.Audio
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;
}

View File

@ -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" ],