diff --git a/leenkx/blender/lnx/logicnode/random/LN_probabilistic_output.py b/leenkx/blender/lnx/logicnode/random/LN_probabilistic_output.py index 7fe9eb4..7448f26 100644 --- a/leenkx/blender/lnx/logicnode/random/LN_probabilistic_output.py +++ b/leenkx/blender/lnx/logicnode/random/LN_probabilistic_output.py @@ -20,7 +20,8 @@ class ProbabilisticOutputNode(LnxLogicTreeNode): num_choices: IntProperty(default=0, min=0) - def __init__(self): + def __init__(self, *args, **kwargs): + super(ProbabilisticOutputNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):