1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Don't break parsing on missing resources

This commit is contained in:
kobewi
2022-11-28 16:19:15 +01:00
parent ef090ee6ea
commit 0765908868
2 changed files with 5 additions and 4 deletions

View File

@@ -1283,7 +1283,7 @@ Error VariantParser::_parse_dictionary(Dictionary &object, Stream *p_stream, int
Variant v;
err = parse_value(token, v, p_stream, line, r_err_str, p_res_parser);
if (err) {
if (err && err != ERR_FILE_MISSING_DEPENDENCIES) {
return err;
}
object[key] = v;