From 44658f8eecf91b538d7cd6344b16c526f123f6ea Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 22 Sep 2024 22:47:26 +0200 Subject: [PATCH] Skip EscortType for SEAD Sweep planned during CAS Seems like the EscortType would cause the flight to be pruned if no IADS threats surround the CAS zone, but we'd like to plan it regardless to tackle air defenses along the front-line --- game/commander/tasks/primitive/cas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/commander/tasks/primitive/cas.py b/game/commander/tasks/primitive/cas.py index 6a43b2df..43954fb7 100644 --- a/game/commander/tasks/primitive/cas.py +++ b/game/commander/tasks/primitive/cas.py @@ -33,4 +33,4 @@ class PlanCas(PackagePlanningTask[FrontLine]): size = self.get_flight_size() self.propose_flight(FlightType.CAS, size) self.propose_flight(FlightType.TARCAP, 2, EscortType.AirToAir) - self.propose_flight(FlightType.SEAD_SWEEP, 2, EscortType.Sead) + self.propose_flight(FlightType.SEAD_SWEEP, 2)