From 790d08fa1372b548b5098489ddfd404200c9849b 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game/theater/controlpoint.py b/game/theater/controlpoint.py index 572a0d32..8ebdf189 100644 --- a/game/theater/controlpoint.py +++ b/game/theater/controlpoint.py @@ -1458,7 +1458,8 @@ class Fob(ControlPoint, RadioFrequencyContainer, CTLD): if not self.is_friendly(for_player): yield FlightType.STRIKE yield FlightType.AIR_ASSAULT - yield FlightType.OCA_AIRCRAFT + else: + yield FlightType.AEWC yield from super().mission_types(for_player)