Correction to conditions - I think this is right, please inform me if not
This commit is contained in:
parent
93b1ec8832
commit
2a0a631b91
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) or gs >= 90) and mode == "SRS") {
|
||||
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…
Add table
Reference in a new issue