store optional events in combat zone

This commit is contained in:
2022-11-28 19:40:33 +01:00
parent 65fec2cd1e
commit dd1d7ff091
2 changed files with 51 additions and 3 deletions

View File

@@ -106,6 +106,11 @@ internal class TransactionParserContext {
Faction = LastRecordedAwardingFaction,
Grade = grade,
Type = cztype,
// Sad truth is, if HaveSeenXXX is false, we just don't know for certain
CapitalShip = HaveSeenCapShip ? true : null,
SpecOps = HaveSeenSpecOps ? true : null,
Correspondent = HaveSeenCorrespondent ? true : null,
Captain = HaveSeenCaptain ? true : null,
Amount = 1,
};
zone.Entries.Add(e);