this file is broken by design. Fixing the Nasal error apparently
overstrains it, so here's the error back. Have fun! :-|
This commit is contained in:
parent
4690b3c2c3
commit
51712052e1
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ initialize = func {
|
||||||
}
|
}
|
||||||
|
|
||||||
initDoubleProp = func(node, prop, val) {
|
initDoubleProp = func(node, prop, val) {
|
||||||
if(node.getNode(prop) != nil and node.getType() != "NONE") {
|
if(node.getNode(prop) != nil) {
|
||||||
val = num(node.getNode(prop).getValue());
|
val = num(node.getNode(prop).getValue());
|
||||||
}
|
}
|
||||||
node.getNode(prop, 1).setDoubleValue(val);
|
node.getNode(prop, 1).setDoubleValue(val);
|
||||||
|
|
Loading…
Reference in a new issue