Merge pull request #55477 from pycbouh/editor-crash-script-parent-check

This commit is contained in:
Rémi Verschelde 2021-11-30 17:03:14 +01:00 committed by GitHub
commit 2f8cb1547c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -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) {