From 76b2ba8f808066e85d705809f15c3c904500e70b Mon Sep 17 00:00:00 2001 From: LeenkxTeam Date: Sun, 6 Apr 2025 10:22:41 +0000 Subject: [PATCH] Update leenkx/blender/lnx/logicnode/miscellaneous/LN_call_group.py --- leenkx/blender/lnx/logicnode/miscellaneous/LN_call_group.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/leenkx/blender/lnx/logicnode/miscellaneous/LN_call_group.py b/leenkx/blender/lnx/logicnode/miscellaneous/LN_call_group.py index 5a78d8d..7524974 100644 --- a/leenkx/blender/lnx/logicnode/miscellaneous/LN_call_group.py +++ b/leenkx/blender/lnx/logicnode/miscellaneous/LN_call_group.py @@ -11,7 +11,8 @@ class CallGroupNode(LnxLogicTreeNode): lnx_section = 'group' lnx_version = 3 - def __init__(self): + def __init__(self, *args, **kwargs): + super(CallGroupNode, self).__init__(*args, **kwargs) self.register_id() def lnx_init(self, context):