From 33a4d700462413959d02c00cebdb5bcaddbfcba0 Mon Sep 17 00:00:00 2001 From: legoboyvdlp R Date: Sat, 21 Nov 2020 20:54:28 +0000 Subject: [PATCH] Fix FCU - altitude input should be between FL001 and FL490 --- Nasal/FMGC/FCU.nas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Nasal/FMGC/FCU.nas b/Nasal/FMGC/FCU.nas index f53e8ccc..fc21405f 100644 --- a/Nasal/FMGC/FCU.nas +++ b/Nasal/FMGC/FCU.nas @@ -381,10 +381,10 @@ var FCUController = { } else if (d == -10) { altTemp = altTemp - 1000; } - if (altTemp < 0) { - altSet.setValue(0); - } else if (altTemp > 50000) { - altSet.setValue(50000); + if (altTemp < 100) { + altSet.setValue(100); + } else if (altTemp > 49000) { + altSet.setValue(49000); } else { altSet.setValue(altTemp); }