Fix AAA not placed as frontline unit

- Spawn AAA like SHORAD
- change SA-19 unit class from AAA to SHORAD

fixes #2194
This commit is contained in:
RndName
2022-05-02 12:56:38 +02:00
parent 41d1ae099f
commit e4f91fd3ba
3 changed files with 3 additions and 2 deletions

View File

@@ -119,7 +119,7 @@ class GroundPlanner:
elif unit_class is UnitClass.ATGM:
collection = self.atgm_group
role = CombatGroupRole.ATGM
elif unit_class is UnitClass.SHORAD:
elif unit_class in [UnitClass.SHORAD, UnitClass.AAA]:
collection = self.shorad_groups
role = CombatGroupRole.SHORAD
elif unit_class is UnitClass.RECON: