From 51712052e17c5a43dbf229f72a60c311b24cc76e Mon Sep 17 00:00:00 2001 From: mfranz Date: Sat, 13 Jan 2007 22:37:38 +0000 Subject: [PATCH] this file is broken by design. Fixing the Nasal error apparently overstrains it, so here's the error back. Have fun! :-| --- Nasal/fuel.nas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nasal/fuel.nas b/Nasal/fuel.nas index 6f6ddf833..a09d77317 100644 --- a/Nasal/fuel.nas +++ b/Nasal/fuel.nas @@ -117,7 +117,7 @@ initialize = func { } 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()); } node.getNode(prop, 1).setDoubleValue(val);