Skip to content

Commit

Permalink
Merge pull request #84148 from KANAjetzt/fix_crash_take_over_path_nam…
Browse files Browse the repository at this point in the history
…ed_class

Fix crash when extending taken-over named class
  • Loading branch information
akien-mga committed May 7, 2024
2 parents e001bc7 + f4192aa commit 0404e3a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/gdscript/gdscript_compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2666,7 +2666,10 @@ Error GDScriptCompiler::_prepare_compilation(GDScript *p_script, const GDScriptP

GDScriptDataType base_type = _gdtype_from_datatype(p_class->base_type, p_script, false);

ERR_FAIL_COND_V_MSG(base_type.native_type == StringName(), ERR_BUG, vformat(R"(Failed to get base class for "%s")", p_script->path));

int native_idx = GDScriptLanguage::get_singleton()->get_global_map()[base_type.native_type];

p_script->native = GDScriptLanguage::get_singleton()->get_global_array()[native_idx];
ERR_FAIL_COND_V(p_script->native.is_null(), ERR_BUG);

Expand Down

0 comments on commit 0404e3a

Please sign in to comment.