Fix translation remapping check for imported resources

Fixes #81660.
This commit is contained in:
Rémi Verschelde 2023-11-12 13:16:37 +01:00
parent 89f2f7f278
commit 2729a78fd7
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -918,7 +918,7 @@ String ResourceLoader::_path_remap(const String &p_path, bool *r_translation_rem
}
// Fallback to p_path if new_path does not exist.
if (!FileAccess::exists(new_path)) {
if (!FileAccess::exists(new_path + ".import") && !FileAccess::exists(new_path)) {
WARN_PRINT(vformat("Translation remap '%s' does not exist. Falling back to '%s'.", new_path, p_path));
new_path = p_path;
}