From a9e94d8254661606140a18205f64ded94a7aa6e0 Mon Sep 17 00:00:00 2001 From: Joseph Davies Date: Wed, 23 Aug 2017 07:11:14 -0700 Subject: [PATCH] Fix node class/idname mismatch. --- korman/nodes/node_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/nodes/node_python.py b/korman/nodes/node_python.py index 1938e9e..0e6307d 100644 --- a/korman/nodes/node_python.py +++ b/korman/nodes/node_python.py @@ -372,7 +372,7 @@ class PlasmaAttribBoolNode(PlasmaAttribNodeBase, bpy.types.Node): class PlasmaAttribNumericNode(PlasmaAttribNodeBase, bpy.types.Node): bl_category = "PYTHON" - bl_idname = "PlasmaAttribIntNode" + bl_idname = "PlasmaAttribNumericNode" bl_label = "Numeric Attribute" def _on_update_int(self, context):