fix payouts for medium combat zones
This commit is contained in:
parent
f683bc372e
commit
d79ee5a153
@ -65,8 +65,10 @@ internal class TransactionParserContext {
|
||||
// High on foot combat zones have enforcers that bring 80k a pop
|
||||
if (highest >= 80000) {
|
||||
grade = "High";
|
||||
} else if (highest >= 4000) {
|
||||
} else if (highest >= 40000) {
|
||||
grade = "Medium";
|
||||
} else {
|
||||
grade = "Low";
|
||||
}
|
||||
} else if (ShipKills > 0) {
|
||||
// Ship combat zones can be identified by the amount of kills
|
||||
|
Loading…
Reference in New Issue
Block a user