From 62d3e65796f6e5f2238c4e9d70d8929a8e4957a4 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Thu, 3 Apr 2025 09:27:03 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/animation/LN_switch_action_multi.py --- .../blender/lnx/logicnode/animation/LN_switch_action_multi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/animation/LN_switch_action_multi.py b/leenkx/blender/lnx/logicnode/animation/LN_switch_action_multi.py index 52e5b76..1c32fda 100644 --- a/leenkx/blender/lnx/logicnode/animation/LN_switch_action_multi.py +++ b/leenkx/blender/lnx/logicnode/animation/LN_switch_action_multi.py @@ -7,8 +7,8 @@ class SwitchActionMultiNode(LnxLogicTreeNode): lnx_version = 1 min_inputs = 8 - def __init__(self): - super(SwitchActionMultiNode, self).__init__() + def __init__(self, *args, **kwargs): + super(SwitchActionMultiNode, self).__init__(*args, **kwargs) array_nodes[self.get_id_str()] = self def lnx_init(self, context):