From 926e5451dfd60a1dc00af9c4d0f0387bb93c8870 Mon Sep 17 00:00:00 2001 From: Chomp Date: Wed, 15 Jan 2025 12:15:01 +0000 Subject: [PATCH] Updated `PmcData` `Prestige` property type --- Core/Generators/BotGenerator.cs | 2 +- Core/Models/Eft/Common/PmcData.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Generators/BotGenerator.cs b/Core/Generators/BotGenerator.cs index ce79dda7..d4c92a43 100644 --- a/Core/Generators/BotGenerator.cs +++ b/Core/Generators/BotGenerator.cs @@ -145,7 +145,7 @@ public class BotGenerator WishList = bot.WishList, MoneyTransferLimitData = bot.MoneyTransferLimitData, IsPmc = bot.IsPmc, - Prestige = new Prestige() + Prestige = new Dictionary() }; } diff --git a/Core/Models/Eft/Common/PmcData.cs b/Core/Models/Eft/Common/PmcData.cs index 6e7b1ffd..8f240e00 100644 --- a/Core/Models/Eft/Common/PmcData.cs +++ b/Core/Models/Eft/Common/PmcData.cs @@ -8,7 +8,7 @@ public class PmcData : BotBase { [JsonPropertyName("Prestige")] [JsonConverter(typeof(ArrayToObjectFactoryConverter))] - public Tables.Prestige? Prestige { get; set; } + public Dictionary? Prestige { get; set; } } public class PostRaidPmcData : BotBase