From e8d85c8565281f4eb7881e25e20c0c5c0739e0c7 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 23 Dec 2025 12:44:35 +0000 Subject: [PATCH] Updated `ArmorDurability` nullability values --- .../SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs index beb207f1..39505f00 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BotDurability.cs @@ -65,10 +65,10 @@ public record ArmorDurability public int MinLimitPercent { get; set; } [JsonPropertyName("lowestMaxPercent")] - public int LowestMaxPercent { get; set; } + public int? LowestMaxPercent { get; set; } [JsonPropertyName("highestMaxPercent")] - public int HighestMaxPercent { get; set; } + public int? HighestMaxPercent { get; set; } } public record WeaponDurability