Fix bug in LOC -- now can only be armed above 400 feet and if not in SRS mode
This commit is contained in:
parent
70b0bb6730
commit
7527908d8e
1 changed files with 7 additions and 5 deletions
|
@ -329,11 +329,13 @@ var FCUController = {
|
|||
fmgc.ITAF.disarmGS();
|
||||
}
|
||||
} else {
|
||||
latModeInput.setValue(2);
|
||||
if (vertTemp == 2 or vertTemp == 6) {
|
||||
me.VSPull();
|
||||
} else {
|
||||
fmgc.ITAF.disarmGS();
|
||||
if (pts.Position.gearAglFt.getValue() >= 400 and vertTemp != 7) {
|
||||
latModeInput.setValue(2);
|
||||
if (vertTemp == 2 or vertTemp == 6) {
|
||||
me.VSPull();
|
||||
} else {
|
||||
fmgc.ITAF.disarmGS();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue