2
0
Fork 0

Fix exported property values being lost if base GDScript fails to parse

3.1
Ignacio Etcheverry 2019-02-14 02:36:19 +07:00
parent be98a6ebbc
commit 2f8d1a321a
1 changed files with 1 additions and 1 deletions

@ -483,7 +483,7 @@ bool GDScript::_update_exports() {
placeholder_fallback_enabled = true;
return false;
}
} else if (!valid || placeholder_fallback_enabled) {
} else if (placeholder_fallback_enabled) {
return false;
}