diff --git a/MissionCompletedEntry.cs b/MissionCompletedEntry.cs index 5dedad4..af057ed 100644 --- a/MissionCompletedEntry.cs +++ b/MissionCompletedEntry.cs @@ -15,6 +15,8 @@ namespace EDJournal { protected override void Initialise() { MissionID = JSON.Value("MissionID") ?? 0; Name = JSON.Value("Name"); + Faction = JSON.Value("Faction") ?? ""; + TargetFaction = JSON.Value("TargetFaction") ?? ""; if (JSON.ContainsKey("Commodity_Localised")) { Commodity = JSON.Value("Commodity_Localised"); } @@ -69,6 +71,8 @@ namespace EDJournal { public int Count { get; set; } public int Donated { get; set; } public int MissionID { get; set; } + public string Faction { get; set; } + public string TargetFaction { get; set; } private void MakeHumanReadableName() { if (readable_name != null || Name == null) {