From 22a94a693e5c3f9b5c513e4d2f77c27ddbeb8e72 Mon Sep 17 00:00:00 2001 From: Joshua Davidson Date: Sun, 30 Jul 2017 15:47:21 -0400 Subject: [PATCH] A3XX: FMGC Managed Speed bugfix --- Nasal/FMGC.nas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nasal/FMGC.nas b/Nasal/FMGC.nas index 7d9d91a7..113f53b1 100644 --- a/Nasal/FMGC.nas +++ b/Nasal/FMGC.nas @@ -208,7 +208,7 @@ var phasecheck = maketimer(0.2, func { setprop("/systems/pressurization/mode", "TO"); } - if ((aglalt >= reduc_agl_ft) and (alt <= cruiseft) and (phase == "1") and (phase != "4") and (mode != "SRS")) { + if ((alt >= reduc_agl_ft) and (alt <= cruiseft) and (phase == "1") and (phase != "4") and (mode != "SRS")) { setprop("/FMGC/status/phase", "2"); }