More nullable in models

This commit is contained in:
Archangel
2025-08-23 22:51:16 +02:00
parent 59d82cab29
commit dce403c10e
2 changed files with 2 additions and 2 deletions
@@ -209,7 +209,7 @@ public record BotGlobalAimingSettings
public float? MissDist { get; set; }
[JsonPropertyName("UnderbarrelLauncherAiming")]
public BotUnderbarrelLauncherAimingSettings UnderbarrelLauncherAiming { get; set; }
public BotUnderbarrelLauncherAimingSettings? UnderbarrelLauncherAiming { get; set; }
}
/// <summary>
@@ -41,7 +41,7 @@ public record BotGlobalCoreSettings
public bool? CanGrenade { get; set; }
[JsonPropertyName("AimingType")]
public EAimingType AimingType { get; set; }
public EAimingType? AimingType { get; set; }
[JsonPropertyName("PistolFireDistancePref")]
public float? PistolFireDistancePref { get; set; }