From 0f9fd7e1b5c2b622e43825b5201abe019703675c Mon Sep 17 00:00:00 2001 From: Joshua Thome Date: Tue, 21 Mar 2023 22:14:47 -0500 Subject: [PATCH] Merge new settings --- NewHorizons/External/Configs/StarSystemConfig.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NewHorizons/External/Configs/StarSystemConfig.cs b/NewHorizons/External/Configs/StarSystemConfig.cs index ecc1710f..514c393e 100644 --- a/NewHorizons/External/Configs/StarSystemConfig.cs +++ b/NewHorizons/External/Configs/StarSystemConfig.cs @@ -279,6 +279,8 @@ namespace NewHorizons.External.Configs { Vessel.spawnOnVessel = Vessel.spawnOnVessel || otherConfig.Vessel.spawnOnVessel; Vessel.alwaysPresent = Vessel.alwaysPresent || otherConfig.Vessel.alwaysPresent; + Vessel.hasPhysics = Vessel.hasPhysics ?? otherConfig.Vessel.hasPhysics; + Vessel.hasZeroGravityVolume = Vessel.hasZeroGravityVolume ?? otherConfig.Vessel.hasZeroGravityVolume; } Vessel = Vessel == null ? otherConfig.Vessel : Vessel;