Merge pull request #25866 from neikeq/issue-25121

Fix exported property values being lost if base GDScript fails to parse
This commit is contained in:
Rémi Verschelde 2019-02-14 09:21:19 +01:00 committed by GitHub
commit 89ca15693e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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