From c9e4b5eba4d95f90d9a2ca20d1499c9986127c6d Mon Sep 17 00:00:00 2001 From: zhexu14 <64713351+zhexu14@users.noreply.github.com> Date: Thu, 4 May 2023 23:05:41 +1000 Subject: [PATCH] enable AEWC missions on FOBs --- game/theater/controlpoint.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game/theater/controlpoint.py b/game/theater/controlpoint.py index 70aad636..243950e2 100644 --- a/game/theater/controlpoint.py +++ b/game/theater/controlpoint.py @@ -1444,6 +1444,8 @@ class Fob(ControlPoint): if not self.is_friendly(for_player): yield FlightType.STRIKE yield FlightType.AIR_ASSAULT + else: + yield FlightType.AEWC yield from super().mission_types(for_player)