From 1e18795d29b795449882243888f68ff837112994 Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 09:40:14 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/string/LN_concatenate_string.py --- leenkx/blender/lnx/logicnode/string/LN_concatenate_string.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/string/LN_concatenate_string.py b/leenkx/blender/lnx/logicnode/string/LN_concatenate_string.py index 95f674e..d5819f2 100644 --- a/leenkx/blender/lnx/logicnode/string/LN_concatenate_string.py +++ b/leenkx/blender/lnx/logicnode/string/LN_concatenate_string.py @@ -7,8 +7,8 @@ class ConcatenateStringNode(LnxLogicTreeNode): lnx_version = 2 min_inputs = 1 - def __init__(self): - super(ConcatenateStringNode, self).__init__() + def __init__(self, *args, **kwargs): + super(ConcatenateStringNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):