From db1c3bdf4c4f3be71c550d78f534968634cdf367 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:59:20 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/logic/LN_call_function.py --- leenkx/blender/lnx/logicnode/logic/LN_call_function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/logic/LN_call_function.py b/leenkx/blender/lnx/logicnode/logic/LN_call_function.py index addd189..4f49ca6 100644 --- a/leenkx/blender/lnx/logicnode/logic/LN_call_function.py +++ b/leenkx/blender/lnx/logicnode/logic/LN_call_function.py @@ -10,8 +10,8 @@ class CallFunctionNode(LnxLogicTreeNode): lnx_version = 2 min_inputs = 3 - def __init__(self): - super(CallFunctionNode, self).__init__() + def __init__(self, *args, **kwargs): + super(CallFunctionNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):