diff --git a/NewHorizons/Builder/Props/DialogueBuilder.cs b/NewHorizons/Builder/Props/DialogueBuilder.cs index 8bd12c86..0878cd87 100644 --- a/NewHorizons/Builder/Props/DialogueBuilder.cs +++ b/NewHorizons/Builder/Props/DialogueBuilder.cs @@ -290,6 +290,10 @@ namespace NewHorizons.Builder.Props interact._interactRange = info.range; + // If a dialogue is on the ship, make sure its usable + // Assumes these are inside the ship and not outside, not sure if thats an issue + interact._usableInShip = planetGO.name == "Ship_Body"; + if (info.radius <= 0) { sphere.enabled = false; diff --git a/NewHorizons/manifest.json b/NewHorizons/manifest.json index e1bfa1ad..75cd8f6b 100644 --- a/NewHorizons/manifest.json +++ b/NewHorizons/manifest.json @@ -4,7 +4,7 @@ "author": "xen, Bwc9876, JohnCorby, MegaPiggy, and friends", "name": "New Horizons", "uniqueName": "xen.NewHorizons", - "version": "1.28.4", + "version": "1.28.5", "owmlVersion": "2.12.1", "dependencies": [ "JohnCorby.VanillaFix", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ], "conflicts": [ "PacificEngine.OW_CommonResources" ],