Remove print
This commit is contained in:
parent
74cf4acb9b
commit
6ecb46c051
1 changed files with 0 additions and 2 deletions
|
@ -68,7 +68,6 @@ var warning = {
|
||||||
if (me.light >= 1) {return;}
|
if (me.light >= 1) {return;}
|
||||||
if (me.active == 1 and me.noRepeat == 0) { # only toggle light once per message, allows canceling
|
if (me.active == 1 and me.noRepeat == 0) { # only toggle light once per message, allows canceling
|
||||||
lights[me.light].setBoolValue(1);
|
lights[me.light].setBoolValue(1);
|
||||||
print(lights[me.light].getBoolValue());
|
|
||||||
me.noRepeat = 1;
|
me.noRepeat = 1;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -268,7 +267,6 @@ var ECAMloopTimer = maketimer(0.2, func {
|
||||||
# Flash Master Warning Light
|
# Flash Master Warning Light
|
||||||
var warnTimer = maketimer(0.25, func {
|
var warnTimer = maketimer(0.25, func {
|
||||||
if (!lights[0].getBoolValue()) {
|
if (!lights[0].getBoolValue()) {
|
||||||
print("quitting!");
|
|
||||||
warnTimer.stop();
|
warnTimer.stop();
|
||||||
warningFlash.setBoolValue(0);
|
warningFlash.setBoolValue(0);
|
||||||
} else if (!warningFlash.getBoolValue()) {
|
} else if (!warningFlash.getBoolValue()) {
|
||||||
|
|
Reference in a new issue