remove "?" since MVector3 is already nullable

This commit is contained in:
JohnCorby 2023-07-18 21:02:44 -07:00
parent 0bdf9c087a
commit ea3ee71b97

View File

@ -29,7 +29,7 @@ namespace NewHorizons.External.Modules
/// <summary> /// <summary>
/// Offsets the player/ship by this local vector when spawning. Used to prevent spawning in the floor. Optional: defaults to (0, 4, 0). /// Offsets the player/ship by this local vector when spawning. Used to prevent spawning in the floor. Optional: defaults to (0, 4, 0).
/// </summary> /// </summary>
public MVector3? offset; public MVector3 offset;
} }
[JsonObject] [JsonObject]