fix payouts for medium combat zones

This commit is contained in:
Florian Stinglmayr 2022-11-28 19:49:52 +01:00
parent f683bc372e
commit d79ee5a153

View File

@ -65,8 +65,10 @@ internal class TransactionParserContext {
// High on foot combat zones have enforcers that bring 80k a pop // High on foot combat zones have enforcers that bring 80k a pop
if (highest >= 80000) { if (highest >= 80000) {
grade = "High"; grade = "High";
} else if (highest >= 4000) { } else if (highest >= 40000) {
grade = "Medium"; grade = "Medium";
} else {
grade = "Low";
} }
} else if (ShipKills > 0) { } else if (ShipKills > 0) {
// Ship combat zones can be identified by the amount of kills // Ship combat zones can be identified by the amount of kills