From e1d48e42896257f64ba9feb056f172510a4533b3 Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 10:06:04 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/random/LN_probabilistic_output.py --- leenkx/blender/lnx/logicnode/random/LN_probabilistic_output.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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):