diff options
author | Yuri Sizov <yuris@humnom.net> | 2021-11-30 17:44:22 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2021-11-30 17:44:22 +0300 |
commit | 98ad5cd3db4654b031ce887fe3af77a3bd3b4f3a (patch) | |
tree | a7b052f916869683f9413c3ab5faed1806e1bdae | |
parent | 2d118bd8b881fe9658e70eb8dc4fa7a6efac41a3 (diff) |
Fix a crash in editor's script parent class check
-rw-r--r-- | editor/editor_data.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index a163b468e6..6fd8cb47ea 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<Script> script = script_class_load_script(p_class); + if (script.is_null()) { + return false; + } + + String base = script_class_get_base(p_class); Ref<Script> base_script = script->get_base_script(); while (p_inherits != base) { |