From d2746fb087d293e01942ac861c7b029a67c05e71 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:27:55 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/array/LN_array.py --- leenkx/blender/lnx/logicnode/array/LN_array.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/leenkx/blender/lnx/logicnode/array/LN_array.py b/leenkx/blender/lnx/logicnode/array/LN_array.py index 91f472e..674385e 100644 --- a/leenkx/blender/lnx/logicnode/array/LN_array.py +++ b/leenkx/blender/lnx/logicnode/array/LN_array.py @@ -9,7 +9,8 @@ class ArrayNode(LnxLogicVariableNodeMixin, LnxLogicTreeNode): lnx_section = 'variable' min_inputs = 0 - def __init__(self): + def __init__(self, *args, **kwargs): + super(ArrayNode, self).__init__(*args, **kwargs) self.register_id() def lnx_init(self, context):