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):