Fix CallFunctionNode

This commit is contained in:
Moritz Brückner 2020-10-04 21:33:32 +02:00
parent da1cf33930
commit f27c885361

View file

@ -11,7 +11,7 @@ class CallFunctionNode extends LogicNode {
}
override function run(from: Int) {
var object: Object = inputs[1].get();
var object: Dynamic = inputs[1].get();
if (object == null) return;
var funName: String = inputs[2].get();