From 4682fc275fdce8342b2a69f4cfea662d642f549a Mon Sep 17 00:00:00 2001 From: Ben C Date: Thu, 16 Mar 2023 22:18:35 +0000 Subject: [PATCH 1/3] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 65c09f02..82696e36 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -1793,7 +1793,7 @@ }, "isRelativeToGroup": { "type": "boolean", - "description": "Whether the socket will be placed relative to the group it belongs to", + "description": "Whether the socket will be placed relative to the group it belongs to. Overrides `isRelativeToParent`", "default": true }, "probability": { From 15961bed4bf4828de1b44544f3d5f5a124882174 Mon Sep 17 00:00:00 2001 From: Will Corby Date: Thu, 16 Mar 2023 16:02:21 -0700 Subject: [PATCH 2/3] bump version before i forget --- NewHorizons/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/manifest.json b/NewHorizons/manifest.json index c5bbf50d..99486e9b 100644 --- a/NewHorizons/manifest.json +++ b/NewHorizons/manifest.json @@ -4,7 +4,7 @@ "author": "xen, Bwc9876, clay, MegaPiggy, John, Trifid, Hawkbar, Book", "name": "New Horizons", "uniqueName": "xen.NewHorizons", - "version": "1.9.0", + "version": "1.9.1", "owmlVersion": "2.9.0", "dependencies": [ "JohnCorby.VanillaFix", "_nebula.MenuFramework", "xen.CommonCameraUtility", "dgarro.CustomShipLogModes" ], "conflicts": [ "Raicuparta.QuantumSpaceBuddies", "PacificEngine.OW_CommonResources" ], From 00729ef4ae454dcb69dcb4a08a3f9fb9c9d01591 Mon Sep 17 00:00:00 2001 From: Will Corby Date: Thu, 16 Mar 2023 16:04:52 -0700 Subject: [PATCH 3/3] Update DetailBuilder.cs --- NewHorizons/Builder/Props/DetailBuilder.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NewHorizons/Builder/Props/DetailBuilder.cs b/NewHorizons/Builder/Props/DetailBuilder.cs index c00bc217..b38c3f7a 100644 --- a/NewHorizons/Builder/Props/DetailBuilder.cs +++ b/NewHorizons/Builder/Props/DetailBuilder.cs @@ -136,7 +136,7 @@ namespace NewHorizons.Builder.Props { if (t.GetComponents().Any(c => c == null)) { - Logger.LogError($"Failed to instantiate component at {t.GetPath()}"); + Logger.LogError($"Failed to instantiate component at {t.GetPath()}. This usually means there's a missing script."); } } } @@ -437,4 +437,4 @@ namespace NewHorizons.Builder.Props } } } -} \ No newline at end of file +}