From c10e988d2d621e9025f77074a8bc30a67240645e Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 10:13:28 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/logic/LN_wait_for.py --- leenkx/blender/lnx/logicnode/logic/LN_wait_for.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leenkx/blender/lnx/logicnode/logic/LN_wait_for.py b/leenkx/blender/lnx/logicnode/logic/LN_wait_for.py index 4603ed6..143b742 100644 --- a/leenkx/blender/lnx/logicnode/logic/LN_wait_for.py +++ b/leenkx/blender/lnx/logicnode/logic/LN_wait_for.py @@ -13,8 +13,8 @@ class WaitForNode(LnxLogicTreeNode): lnx_section = 'flow' lnx_version = 1 - def __init__(self): - super(WaitForNode, self).__init__() + def __init__(self, *args, **kwargs): + super(WaitForNode, self).__init__(*args, **kwargs) array_nodes[str(id(self))] = self def lnx_init(self, context):