diff --git a/leenkx/blender/lnx/logicnode/array/LN_array_add.py b/leenkx/blender/lnx/logicnode/array/LN_array_add.py index 5b738c5..6f58cd3 100644 --- a/leenkx/blender/lnx/logicnode/array/LN_array_add.py +++ b/leenkx/blender/lnx/logicnode/array/LN_array_add.py @@ -12,8 +12,8 @@ class ArrayAddNode(LnxLogicTreeNode): lnx_version = 5 min_inputs = 6 - def __init__(self): - super(ArrayAddNode, self).__init__() + def __init__(self, *args, **kwargs): + super(ArrayAddNode, self).__init__(*args, **kwargs) array_nodes[self.get_id_str()] = self def lnx_init(self, context):