Browse Source

Merge pull request #84791 from akien-mga/fix-translation-remapping-check

Fix translation remapping check for imported resources
Rémi Verschelde 1 year ago
parent
commit
2bcc2a3cd0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/io/resource_loader.cpp

+ 1 - 1
core/io/resource_loader.cpp

@@ -920,7 +920,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;
 		}