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
This commit is contained in:
RndName 2022-11-23 09:26:33 +01:00
parent eb997db703
commit 40ddad1d9a

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: