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