diff --git a/leenkx/blender/lnx/logicnode/logic/LN_output_sequence.py b/leenkx/blender/lnx/logicnode/logic/LN_output_sequence.py index 9a6a1ae..c43b79b 100644 --- a/leenkx/blender/lnx/logicnode/logic/LN_output_sequence.py +++ b/leenkx/blender/lnx/logicnode/logic/LN_output_sequence.py @@ -8,8 +8,8 @@ class SequenceNode(LnxLogicTreeNode): lnx_version = 2 min_outputs = 0 - def __init__(self): - super(SequenceNode, self).__init__() + def __init__(self, *args, **kwargs): + super(SequenceNode, self).__init__(*args, **kwargs) array_nodes[self.get_id_str()] = self def lnx_init(self, context):