Correct loop bug
This commit is contained in:
parent
2a0a631b91
commit
4af7f0faf0
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ var masterFMGC = maketimer(0.2, func {
|
|||
setprop("systems/pressurization/mode", "GN");
|
||||
}
|
||||
|
||||
if (gear0 == 1 and phase == 0 and ((n1_left >= 85 and n1_right >= 85) and mode == "SRS") or gs >= 90) {
|
||||
if (gear0 == 1 and phase == 0 and ((n1_left >= 85 and n1_right >= 85 and mode == "SRS") or gs >= 90)) {
|
||||
setprop("FMGC/status/phase", 1);
|
||||
setprop("systems/pressurization/mode", "TO");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue