Skip to content

Commit

Permalink
天哪
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealKamisama committed Apr 1, 2024
1 parent f97b9ce commit c5d54de
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions WFBot/Features/Utils/WFObjects.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit c5d54de

Please sign in to comment.