From ad227965eaf9ec8766e5e37b583d11e47fb507bf Mon Sep 17 00:00:00 2001 From: Raffson Date: Tue, 13 Jun 2023 17:46:16 +0200 Subject: [PATCH] Replace SEAD-Escort with SEAD for Naval TGOs SEAD Escort is available by default --- game/theater/theatergroundobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/theater/theatergroundobject.py b/game/theater/theatergroundobject.py index 9d4046f8..1180bb8e 100644 --- a/game/theater/theatergroundobject.py +++ b/game/theater/theatergroundobject.py @@ -355,7 +355,7 @@ class NavalGroundObject(TheaterGroundObject, ABC): if not self.is_friendly(for_player): yield from [ FlightType.ANTISHIP, - FlightType.SEAD_ESCORT, + FlightType.SEAD, ] yield from super().mission_types(for_player)