From 98ad5cd3db4654b031ce887fe3af77a3bd3b4f3a Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Tue, 30 Nov 2021 17:44:22 +0300 Subject: [PATCH] Fix a crash in editor's script parent class check --- editor/editor_data.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index a163b468e62..6fd8cb47eaa 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -893,8 +893,13 @@ bool EditorData::script_class_is_parent(const String &p_class, const String &p_i if (!ScriptServer::is_global_class(p_class)) { return false; } - String base = script_class_get_base(p_class); + Ref