From 1b2a162ac5fd8ee133d0c87fe7db7cc568c8e203 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sun, 18 Jun 2023 15:09:40 +0200 Subject: [PATCH] add allied to the combat zone object --- EDPlayerJournal/BGS/TransactionParserContext.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EDPlayerJournal/BGS/TransactionParserContext.cs b/EDPlayerJournal/BGS/TransactionParserContext.cs index d7a7c50..4049ba4 100644 --- a/EDPlayerJournal/BGS/TransactionParserContext.cs +++ b/EDPlayerJournal/BGS/TransactionParserContext.cs @@ -229,7 +229,9 @@ internal class TransactionParserContext { CapitalShip = HaveSeenCapShip ? true : null, SpecOps = HaveSeenSpecOps ? true : null, EnemyCorrespondent = HaveSeenEnemyCorrespondent ? true : null, + AlliedCorrespondent = HaveSeenAlliedCorrespondent ? true : null, EnemyCaptain = HaveSeenEnemyCaptain ? true : null, + AlliedCaptain = HaveSeenAlliedCaptain ? true : null, }; zone.Entries.Add(e); transactions.Add(zone);