From 78a589c50df40f672935fc5ee9f0292f2405e640 Mon Sep 17 00:00:00 2001 From: legoboyvdlp R Date: Wed, 16 Jun 2021 15:09:35 +0100 Subject: [PATCH] Fix merge bug --- Nasal/MCDU/FLIGHTLOG.nas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nasal/MCDU/FLIGHTLOG.nas b/Nasal/MCDU/FLIGHTLOG.nas index c657ecc3..1c82d556 100644 --- a/Nasal/MCDU/FLIGHTLOG.nas +++ b/Nasal/MCDU/FLIGHTLOG.nas @@ -136,7 +136,7 @@ var lastgsrestart = 0; # Check for A/C state change - advice me for a better method, please :/ var waitingOOOIChange = maketimer(1, func(){ # 1sec precision phase = fmgc.FMGCInternal.phase; - gs = pts.Velocities.groundspeed.getValue(); + gs = pts.Velocities.groundspeedKt.getValue(); gear0 = pts.Gear.wow[0].getBoolValue(); #print(sprintf("OOOI check: %d %d %.2f %s",expectedOOOIState,phase,gs,gear0));