From 62af007aa0d750912a6072533db59dad9d2e506f Mon Sep 17 00:00:00 2001 From: David Snopek Date: Fri, 14 Jul 2023 17:48:14 -0500 Subject: [PATCH] Prevent GDExtensions from trying to remove editor plugins at shutdown --- editor/editor_node.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 0bdbf29ee17..c7b15c024d7 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -8119,6 +8119,9 @@ EditorNode::~EditorNode() { memdelete(progress_hb); EditorSettings::destroy(); + + GDExtensionEditorPlugins::editor_node_add_plugin = nullptr; + GDExtensionEditorPlugins::editor_node_remove_plugin = nullptr; } /*