diff --git a/WFBot/Features/Utils/WFObjects.cs b/WFBot/Features/Utils/WFObjects.cs index aca7359..9956a69 100644 --- a/WFBot/Features/Utils/WFObjects.cs +++ b/WFBot/Features/Utils/WFObjects.cs @@ -1782,13 +1782,12 @@ public class WFInvasion } public class Attacker { - private RewardInfo reward; - - [JsonProperty("reward", NullValueHandling = NullValueHandling.Include)] + private RewardInfo reward1; + [JsonProperty("reward")] public RewardInfo Reward { - get => reward ?? new RewardInfo(); - set => reward = value; + get => reward1 ?? new RewardInfo(); + set => reward1 = value; } [JsonProperty("faction")]