From 594cbeffbe5526f5702d13ec01ebdd080c6dd8c3 Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 10:06:39 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/random/LN_random_output.py --- leenkx/blender/lnx/logicnode/random/LN_random_output.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/leenkx/blender/lnx/logicnode/random/LN_random_output.py b/leenkx/blender/lnx/logicnode/random/LN_random_output.py index 3100fce..fada198 100644 --- a/leenkx/blender/lnx/logicnode/random/LN_random_output.py +++ b/leenkx/blender/lnx/logicnode/random/LN_random_output.py @@ -8,7 +8,8 @@ class RandomOutputNode(LnxLogicTreeNode): lnx_section = 'logic' lnx_version = 1 - def __init__(self): + def __init__(self, *args, **kwargs): + super(RandomOutputNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):