From f93ae56cc42476c320e70c29be68c5d5c0094188 Mon Sep 17 00:00:00 2001 From: BBK <22713769+BlueberryKing@users.noreply.github.com> Date: Wed, 27 Sep 2023 22:09:26 +0200 Subject: [PATCH] Use `FlightPlans.Active` instead of `0` --- .../src/systems/fmgc/src/flightplanning/FlightPlanManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbw-a32nx/src/systems/fmgc/src/flightplanning/FlightPlanManager.ts b/fbw-a32nx/src/systems/fmgc/src/flightplanning/FlightPlanManager.ts index a4b6c265e76..70f252dd54f 100644 --- a/fbw-a32nx/src/systems/fmgc/src/flightplanning/FlightPlanManager.ts +++ b/fbw-a32nx/src/systems/fmgc/src/flightplanning/FlightPlanManager.ts @@ -1905,7 +1905,7 @@ export class FlightPlanManager { * Is the transition level for the destination in the *active* flight plan from the database? */ get destinationTransitionLevelIsFromDb(): boolean { - return this.getDestinationTransitionLevelIsFromDb(0); + return this.getDestinationTransitionLevelIsFromDb(FlightPlans.Active); } /**