1
0
Fork 0

System: remove aileron driving the nose wheel, add prompt for auto-coordination

This commit is contained in:
legoboyvdlp R 2019-11-09 16:29:57 +00:00
parent eaec1d8019
commit b7dc1c91e0
2 changed files with 6 additions and 5 deletions

View file

@ -696,11 +696,12 @@ var r2Pedal = func {
if (getprop("/controls/flight/auto-coordination") == 1) { if (getprop("/controls/flight/auto-coordination") == 1) {
setprop("/controls/flight/auto-coordination", 0); setprop("/controls/flight/auto-coordination", 0);
setprop("/controls/flight/aileron-drives-tiller", 1); print("System: Auto Coordination has been turned off as it is not compatible with the fly-by-wire of this aircraft.");
} else { screen.log.write("Auto Coordination has been disabled as it is not compatible with the fly-by-wire of this aircraft", 1, 0, 0);
setprop("/controls/flight/aileron-drives-tiller", 0);
} }
setprop("/controls/flight/aileron-drives-tiller", 0);
var APPanel = { var APPanel = {
APDisc: func() { APDisc: func() {
fcu.FCUController.APDisc(); fcu.FCUController.APDisc();

View file

@ -1 +1 @@
9 10