From 1e0d32a88d6c57b1a3834c33d9ee0c0d7fa88e89 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:32:27 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/array/LN_array_object.py --- leenkx/blender/lnx/logicnode/array/LN_array_object.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/array/LN_array_object.py b/leenkx/blender/lnx/logicnode/array/LN_array_object.py index 84919d6..ba57348 100644 --- a/leenkx/blender/lnx/logicnode/array/LN_array_object.py +++ b/leenkx/blender/lnx/logicnode/array/LN_array_object.py @@ -9,8 +9,8 @@ class ObjectArrayNode(LnxLogicVariableNodeMixin, LnxLogicTreeNode): lnx_section = 'variable' min_inputs = 0 - def __init__(self): - super(ObjectArrayNode, self).__init__() + def __init__(self, *args, **kwargs): + super(ObjectArrayNode, self).__init__(*args, **kwargs) self.register_id() def lnx_init(self, context):