summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan Handley <NathanHandley@users.noreply.github.com>2024-12-02 08:40:13 -0600
committerGitHub <noreply@github.com>2024-12-02 15:40:13 +0100
commita704556ae8daed89504c8d74999c0e58797f91cf (patch)
treea9147ef783c5ce61e73d5630fcec3a3a5612af6f /src
parent8c387fa2b8b4d1dac8902a3b3dc33bf24210fbb6 (diff)
fix(Tools/MapExtractor) Update MPQ patch iterator to also load patch files 4 through 9 (#20815)
Diffstat (limited to 'src')
-rw-r--r--src/tools/map_extractor/System.cpp2
1 files changed, 1 insertions, 1 deletions
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)