Updated PmcData Prestige property type

This commit is contained in:
Chomp
2025-01-15 12:15:01 +00:00
parent f2c03d9e59
commit 926e5451df
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ public class BotGenerator
WishList = bot.WishList,
MoneyTransferLimitData = bot.MoneyTransferLimitData,
IsPmc = bot.IsPmc,
Prestige = new Prestige()
Prestige = new Dictionary<string, long>()
};
}
+1 -1
View File
@@ -8,7 +8,7 @@ public class PmcData : BotBase
{
[JsonPropertyName("Prestige")]
[JsonConverter(typeof(ArrayToObjectFactoryConverter))]
public Tables.Prestige? Prestige { get; set; }
public Dictionary<string, long>? Prestige { get; set; }
}
public class PostRaidPmcData : BotBase