A3XX: Fix DU3 dimming broke

This commit is contained in:
Joshua Davidson 2017-11-21 15:28:49 -05:00
parent 9a5f69f889
commit 9d08039ba3
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@ var canvas_upperECAM_base = {
setprop("/instrumentation/du/du3-test", 0);
}
if (getprop("/systems/electrical/bus/ac1") >= 110 or getprop("/systems/electrical/bus/ac2") >= 110 and getprop("/controls/lighting/DU/du3") > 0) {
if ((getprop("/systems/electrical/bus/ac1") >= 110 or getprop("/systems/electrical/bus/ac2") >= 110) and getprop("/controls/lighting/DU/du3") > 0) {
if (getprop("/instrumentation/du/du3-test-time") + 39 >= elapsedtime) {
upperECAM_cfm_eis2.page.hide();
upperECAM_iae_eis2.page.hide();

View file

@ -1 +1 @@
4026
4027