diff --git a/EDPlayerJournal/BGS/TransactionParser.cs b/EDPlayerJournal/BGS/TransactionParser.cs index 9992e5f..a6a3393 100644 --- a/EDPlayerJournal/BGS/TransactionParser.cs +++ b/EDPlayerJournal/BGS/TransactionParser.cs @@ -667,6 +667,10 @@ internal class ReceiveTextParser : ITransactionParserPart { internal class DiedParser : ITransactionParserPart { public void Parse(Entry entry, TransactionParserContext context, TransactionParserOptions options, TransactionList transactions) { + // Death only matters in ship. On foot you can just redeploy with the dropship. + if (context.IsOnFoot) { + return; + } // You can't complete a combat zone if you die in it. Others might keep it open // for you, but still you will not have completed it unless you jump back in. context.ResetCombatZone();