Add Airfield to list of capture zone types

This will create capture zones and the trigger rules to check for a base capture. Will fix an issue where the dcs capture event is not fired and therefore the capture not recognized by liberation

cherry-pick from 40ddad1d9a
This commit is contained in:
RndName
2022-11-23 09:26:33 +01:00
parent 65a232a0c7
commit 06a4dce555

View File

@@ -44,7 +44,7 @@ class Silence(Option):
class TriggerGenerator:
capture_zone_types = (Fob,)
capture_zone_types = (Fob, Airfield)
capture_zone_flag = 600
def __init__(self, mission: Mission, game: Game) -> None: