diff --git a/leenkx/blender/lnx/logicnode/array/LN_array_splice.py b/leenkx/blender/lnx/logicnode/array/LN_array_splice.py index 6585c8f..168da40 100644 --- a/leenkx/blender/lnx/logicnode/array/LN_array_splice.py +++ b/leenkx/blender/lnx/logicnode/array/LN_array_splice.py @@ -16,3 +16,9 @@ class ArraySpliceNode(LnxLogicTreeNode): self.add_output('LnxNodeSocketAction', 'Out') self.add_output('LnxNodeSocketArray', 'Array') + + def get_replacement_node(self, node_tree: bpy.types.NodeTree): + if self.lnx_version not in (0, 1): + raise LookupError() + + return NodeReplacement.Identity(self) \ No newline at end of file