TO MEMO
This commit is contained in:
parent
6b57a4bc38
commit
0f58dadb8e
1 changed files with 7 additions and 2 deletions
|
@ -175,7 +175,7 @@ var ECAM = {
|
|||
|
||||
if (getprop("/controls/autobrake/mode") == 3 and getprop("/controls/lighting/no-smoking-sign") == 1 and getprop("/controls/lighting/seatbelt-sign") == 1 and getprop("/controls/flight/speedbrake-arm") == 1 and getprop("/controls/flight/flap-pos") > 0
|
||||
and getprop("/controls/flight/flap-pos") < 5) {
|
||||
setprop("/ECAM/to-config", 1);
|
||||
# Do nothing
|
||||
} else {
|
||||
setprop("/ECAM/to-config", 0);
|
||||
}
|
||||
|
@ -275,7 +275,12 @@ var ECAM = {
|
|||
setprop("/ECAM/to-memo-enable", 1);
|
||||
setprop("/ECAM/engine-start-time", getprop("/ECAM/engine-start-time") - 120);
|
||||
}
|
||||
},
|
||||
|
||||
if (getprop("/controls/autobrake/mode") == 3 and getprop("/controls/switches/no-smoking-sign") == 1 and getprop("/controls/switches/seatbelt-sign") == 1 and getprop("/controls/flight/speedbrake-arm") == 1 and getprop("/controls/flight/flap-pos") > 0
|
||||
and getprop("/controls/flight/flap-pos") < 5) {
|
||||
setprop("/ECAM/to-config", 1);
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
ECAM.MSGclr();
|
||||
|
|
Reference in a new issue