diff --git a/leenkx/blender/lnx/logicnode/logic/LN_alternate_output.py b/leenkx/blender/lnx/logicnode/logic/LN_alternate_output.py index 0ce4c06..d0a53a8 100644 --- a/leenkx/blender/lnx/logicnode/logic/LN_alternate_output.py +++ b/leenkx/blender/lnx/logicnode/logic/LN_alternate_output.py @@ -7,8 +7,8 @@ class AlternateNode(LnxLogicTreeNode): lnx_section = 'flow' lnx_version = 2 - def __init__(self): - super(AlternateNode, self).__init__() + def __init__(self, *args, **kwargs): + super(AlternateNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):