diff --git a/leenkx/blender/lnx/logicnode/animation/LN_one_shot_action_multi.py b/leenkx/blender/lnx/logicnode/animation/LN_one_shot_action_multi.py index a339e22..699e0de 100644 --- a/leenkx/blender/lnx/logicnode/animation/LN_one_shot_action_multi.py +++ b/leenkx/blender/lnx/logicnode/animation/LN_one_shot_action_multi.py @@ -8,8 +8,8 @@ class OneShotActionMultiNode(LnxLogicTreeNode): lnx_version = 1 min_inputs = 10 - def __init__(self): - super(OneShotActionMultiNode, self).__init__() + def __init__(self, *args, **kwargs): + super(OneShotActionMultiNode, self).__init__(*args, **kwargs) array_nodes[self.get_id_str()] = self property0: HaxeStringProperty('property0', name = 'Action ID', default = '')