From a627a52d46b81694447f8bdfa555ef46a88f115b Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 10:04:43 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/logic/LN_output_sequence.py --- leenkx/blender/lnx/logicnode/logic/LN_output_sequence.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):