From 44774c5cadfc7c36ae16aa4353635bfd4fa910b1 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sat, 10 Dec 2022 09:52:48 +0100 Subject: [PATCH] fix detection of medium ground combat zones --- EDPlayerJournal/BGS/TransactionParser.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EDPlayerJournal/BGS/TransactionParser.cs b/EDPlayerJournal/BGS/TransactionParser.cs index 1d82c83..de70728 100644 --- a/EDPlayerJournal/BGS/TransactionParser.cs +++ b/EDPlayerJournal/BGS/TransactionParser.cs @@ -88,7 +88,8 @@ internal class TransactionParserContext { // High on foot combat zones have enforcers that bring 80k a pop if (highest >= 80000) { grade = CombatZones.DifficultyHigh; - } else if (highest >= 40000) { + } else if (highest >= 30000) { + // In medium conflict zones, the enforcers are worth 30k grade = CombatZones.DifficultyMedium; } else { grade = CombatZones.DifficultyLow;