thargoid combat zones are called "AX" combat zones ingame
This commit is contained in:
@@ -66,7 +66,7 @@ public class CombatZone : Transaction {
|
||||
/// Returns true if it is a thargoid combat zone
|
||||
/// </summary>
|
||||
public bool IsThargoid {
|
||||
get { return string.Compare(Type, CombatZones.ThargoidCombatZone) == 0; }
|
||||
get { return string.Compare(Type, CombatZones.AXCombatZone) == 0; }
|
||||
}
|
||||
|
||||
public override int CompareTo(Transaction? obj) {
|
||||
|
||||
@@ -112,7 +112,7 @@ internal class TransactionParserContext {
|
||||
cztype = CombatZones.ShipCombatZone;
|
||||
} else if (ThargoidScoutKills > 0 && ThargoidInterceptorKills > 0) {
|
||||
// Could be a thargoid combat zones if interceptors and scouts are there
|
||||
cztype = CombatZones.ThargoidCombatZone;
|
||||
cztype = CombatZones.AXCombatZone;
|
||||
// Still unknown
|
||||
grade = null;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user