1
0
Fork 0

Correct loop bug

This commit is contained in:
legoboyvdlp R 2020-04-18 21:51:22 +01:00 committed by Jonathan Redpath
parent 2a0a631b91
commit 4af7f0faf0

View file

@ -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");
}