From 5f3e342a0e4ffcd095ffe91d9a87b1c49313336c Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 16 Aug 2023 19:33:58 -0700 Subject: [PATCH] Use SEAD for SEAD. The F-14 was fixed to allow this in the latest patch. --- game/missiongenerator/aircraft/aircraftbehavior.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/game/missiongenerator/aircraft/aircraftbehavior.py b/game/missiongenerator/aircraft/aircraftbehavior.py index fd66672f..c61c5030 100644 --- a/game/missiongenerator/aircraft/aircraftbehavior.py +++ b/game/missiongenerator/aircraft/aircraftbehavior.py @@ -18,6 +18,7 @@ from dcs.task import ( OptRestrictJettison, Refueling, RunwayAttack, + SEAD, Transport, ) from dcs.unitgroup import FlyingGroup @@ -164,10 +165,7 @@ class AircraftBehavior: ) def configure_sead(self, group: FlyingGroup[Any], flight: Flight) -> None: - # CAS is able to perform all the same tasks as SEAD using a superset of the - # available aircraft, and F-14s are not able to be SEAD despite having TALDs. - # https://forums.eagle.ru/topic/272112-cannot-assign-f-14-to-sead/ - group.task = CAS.name + group.task = SEAD.name self.configure_behavior( flight, group, @@ -275,10 +273,7 @@ class AircraftBehavior: ) def configure_sead_escort(self, group: FlyingGroup[Any], flight: Flight) -> None: - # CAS is able to perform all the same tasks as SEAD using a superset of the - # available aircraft, and F-14s are not able to be SEAD despite having TALDs. - # https://forums.eagle.ru/topic/272112-cannot-assign-f-14-to-sead/ - group.task = CAS.name + group.task = SEAD.name self.configure_behavior( flight, group,