Merge new settings

This commit is contained in:
Joshua Thome 2023-03-21 22:14:47 -05:00
parent 174500a19d
commit 0f9fd7e1b5

View File

@ -279,6 +279,8 @@ namespace NewHorizons.External.Configs
{ {
Vessel.spawnOnVessel = Vessel.spawnOnVessel || otherConfig.Vessel.spawnOnVessel; Vessel.spawnOnVessel = Vessel.spawnOnVessel || otherConfig.Vessel.spawnOnVessel;
Vessel.alwaysPresent = Vessel.alwaysPresent || otherConfig.Vessel.alwaysPresent; 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; Vessel = Vessel == null ? otherConfig.Vessel : Vessel;