Skip to content

Commit

Permalink
Merge pull request #92216 from dsnopek/runtime-classes-err-print-once
Browse files Browse the repository at this point in the history
Don't use `ERR_PRINT_ONCE()` for runtime class error because it will hide errors
  • Loading branch information
akien-mga committed May 21, 2024
2 parents 9d792dd + 62f9365 commit 2149682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/object/class_db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ Object *ClassDB::_instantiate_internal(const StringName &p_class, bool p_require
#ifdef TOOLS_ENABLED
if (!p_require_real_class && ti->is_runtime && Engine::get_singleton()->is_editor_hint()) {
if (!ti->inherits_ptr || !ti->inherits_ptr->creation_func) {
ERR_PRINT_ONCE(vformat("Cannot make a placeholder instance of runtime class %s because its parent cannot be constructed.", ti->name));
ERR_PRINT(vformat("Cannot make a placeholder instance of runtime class %s because its parent cannot be constructed.", ti->name));
} else {
ObjectGDExtension *extension = get_placeholder_extension(ti->name);
return (Object *)extension->create_instance(extension->class_userdata);
Expand Down

0 comments on commit 2149682

Please sign in to comment.