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):