diff --git a/RedeemVoucherEntry.cs b/RedeemVoucherEntry.cs index 5504142..d300624 100644 --- a/RedeemVoucherEntry.cs +++ b/RedeemVoucherEntry.cs @@ -28,6 +28,10 @@ namespace EDJournal { string single_faction = JSON.Value("Faction"); if (single_faction != null) { Factions.Add(single_faction); + if (!FactionBounties.ContainsKey(single_faction)) { + FactionBounties[single_faction] = 0; + } + FactionBounties[single_faction] += Amount; } }