From 4188ed8cbd8b0c46f56eb145a552d591f0a75667 Mon Sep 17 00:00:00 2001 From: Archangel Date: Thu, 9 Oct 2025 22:03:23 +0200 Subject: [PATCH] Remove CountPve --- .../Models/Eft/Common/LocationBase.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs index b86660b9..8e974e0f 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/LocationBase.cs @@ -822,14 +822,6 @@ public record Exit [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 - { - set { CountPVE = value; } - } - [JsonPropertyName("EntryPoints")] public string? EntryPoints { get; set; }