1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Merge pull request #100933 from Synzorasize/fix_100889

Fix parsing Resource type as value type of a Dictionary
This commit is contained in:
Thaddeus Crews
2025-02-11 09:13:18 -06:00

View File

@@ -1224,7 +1224,7 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream,
r_err_str = String();
value_type = Variant::OBJECT;
value_class_name = token.value;
got_comma_token = true;
got_bracket_token = true;
} else {
return err;
}