From ea3ee71b97815f25ba3b8f98c44729081830d77d Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Tue, 18 Jul 2023 21:02:44 -0700 Subject: [PATCH] remove "?" since MVector3 is already nullable --- NewHorizons/External/Modules/SpawnModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/External/Modules/SpawnModule.cs b/NewHorizons/External/Modules/SpawnModule.cs index 5899b658..f8af3fa1 100644 --- a/NewHorizons/External/Modules/SpawnModule.cs +++ b/NewHorizons/External/Modules/SpawnModule.cs @@ -29,7 +29,7 @@ namespace NewHorizons.External.Modules /// /// Offsets the player/ship by this local vector when spawning. Used to prevent spawning in the floor. Optional: defaults to (0, 4, 0). /// - public MVector3? offset; + public MVector3 offset; } [JsonObject]