From 11bd7be6ff72850ebebb91c038477f99a0af401c Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 16 Jan 2025 16:42:44 +0000 Subject: [PATCH] use CountPVE as primary --- Core/Models/Eft/Common/LocationBase.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Core/Models/Eft/Common/LocationBase.cs b/Core/Models/Eft/Common/LocationBase.cs index 3bb52498..f33046f7 100644 --- a/Core/Models/Eft/Common/LocationBase.cs +++ b/Core/Models/Eft/Common/LocationBase.cs @@ -710,15 +710,15 @@ public class Exit [JsonPropertyName("Count")] public int? Count { get; set; } - [JsonPropertyName("CountPve")] - public int? CountPve { get; set; } + [JsonPropertyName("CountPVE")] + public int? CountPVE { get; set; } // Had to add this property as BSG sometimes names the properties with full PVE capitals // This property will just point the value to CountPve - [JsonPropertyName("CountPVE")] - public int CountPVE + [JsonPropertyName("CountPve")] + public int CountPve { - set => CountPve = value; + set => CountPVE = value; } [JsonPropertyName("EntryPoints")]