From dcaee350cfff5e89d4c420341d1040ced9365f03 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 21 Aug 2023 20:30:37 -0700 Subject: [PATCH] Remove dead code. --- game/ato/flightplans/flightplan.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/game/ato/flightplans/flightplan.py b/game/ato/flightplans/flightplan.py index 5e631c3f..1578d9b0 100644 --- a/game/ato/flightplans/flightplan.py +++ b/game/ato/flightplans/flightplan.py @@ -32,14 +32,6 @@ if TYPE_CHECKING: from .loiter import LoiterFlightPlan from .patrolling import PatrollingFlightPlan -INGRESS_TYPES = { - FlightWaypointType.INGRESS_CAS, - FlightWaypointType.INGRESS_ESCORT, - FlightWaypointType.INGRESS_SEAD, - FlightWaypointType.INGRESS_STRIKE, - FlightWaypointType.INGRESS_DEAD, -} - @dataclass class Layout(ABC):