Removed error message arriving whenever csv file changed

This commit is contained in:
Chaosus 2018-12-16 07:09:33 +03:00
parent 0a4a3f7157
commit 70c3270dfa

View File

@ -353,7 +353,8 @@ Vector<String> FileAccess::get_csv_line(const String &p_delim) const {
String l;
int qc = 0;
do {
ERR_FAIL_COND_V(eof_reached(), Vector<String>());
if (eof_reached())
break;
l += get_line() + "\n";
qc = 0;