From b00d6f8d0dc4c565f8848f930240105e868728c8 Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 21 Aug 2025 15:14:54 +0100 Subject: [PATCH] Fixed various property mapping issues --- .../Models/Eft/Common/Tables/BotBase.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs index a5baa655..52d6c978 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Eft/Common/Tables/BotBase.cs @@ -526,6 +526,18 @@ public record Victim public string? Role { get; set; } public string? Location { get; set; } + + [JsonPropertyName("GInterface187.ProfileId")] + public object profileIdTest { get; set; } + + [JsonPropertyName("GInterface187.Nickname")] + public object NicknameTest { get; set; } + + [JsonPropertyName("GInterface187.Side")] + public object SideTest { get; set; } + + [JsonPropertyName("GInterface187.PrestigeLevel")] + public object PrestigeLevelTest { get; set; } } public record SessionCounters