From a704556ae8daed89504c8d74999c0e58797f91cf Mon Sep 17 00:00:00 2001 From: Nathan Handley Date: Mon, 2 Dec 2024 08:40:13 -0600 Subject: fix(Tools/MapExtractor) Update MPQ patch iterator to also load patch files 4 through 9 (#20815) --- src/tools/map_extractor/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools') diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp index 6f9806e347..0b0f744f41 100644 --- a/src/tools/map_extractor/System.cpp +++ b/src/tools/map_extractor/System.cpp @@ -1144,7 +1144,7 @@ void LoadLocaleMPQFiles(int const locale) sprintf(filename, "%s/Data/%s/locale-%s.MPQ", input_path, langs[locale], langs[locale]); new MPQArchive(filename); - for (int i = 1; i < 5; ++i) + for (int i = 1; i <= 9; ++i) { char ext[3] = ""; if (i > 1) -- cgit v1.2.3