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