Merge pull request #5936 from bojidar-bg/fix-empty-stringarray-read

Fix reading of empty StringArray-s in .tscn
This commit is contained in:
Rémi Verschelde 2016-07-27 17:21:55 +02:00 committed by GitHub
commit 161e77471f
1 changed files with 3 additions and 1 deletions

View File

@ -1233,7 +1233,9 @@ Error VariantParser::parse_value(Token& token,Variant &value,Stream *p_stream,in
}
get_token(p_stream,token,line,r_err_str);
if (token.type!=TK_STRING) {
if (token.type==TK_PARENTHESIS_CLOSE) {
break;
} else if (token.type!=TK_STRING) {
r_err_str="Expected string";
return ERR_PARSE_ERROR;
}