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
commit a0f10a28a6
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84

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;
}