Fix translation bug loading assets unnecessarily

This commit is contained in:
Oliver Hamlet
2025-03-25 20:56:11 +00:00
parent 5152783534
commit 39e575355b
+3 -1
View File
@@ -110,7 +110,9 @@ impl Plugin {
archive_paths = find_associated_archives(game_type, game_cache, plugin_path);
archive_assets = assets_in_archives(&archive_paths);
if load_scope == LoadScope::WholePlugin {
archive_assets = assets_in_archives(&archive_paths);
}
Some(plugin)
} else {