1
0
Fork 0

let getBoolValue() actually return a bool

This commit is contained in:
mfranz 2006-02-20 10:59:52 +00:00
parent cde64c8543
commit bd327892d6

View file

@ -39,7 +39,7 @@ Node = {
getBoolValue : func {
val = me.getValue();
if(me.getType() == "STRING" and val == "false") { 0 }
else { val }
else { val != 0 }
}
};