diff --git a/src/shared/MPQHelper.cpp b/src/shared/MPQHelper.cpp index 41ef924..cd8beb9 100644 --- a/src/shared/MPQHelper.cpp +++ b/src/shared/MPQHelper.cpp @@ -18,6 +18,19 @@ void MPQHelper::Init() std::string ext = ".MPQ"; std::string ldir = dir + GetLocale() + "/"; + //1.12.X files + _patches.push_front(dir+"base"+ext); + _patches.push_front(dir+"dbc"+ext); + _patches.push_front(dir+"fonts"+ext); + _patches.push_front(dir+"interface"+ext); + _patches.push_front(dir+"misc"+ext); + _patches.push_front(dir+"model"+ext); + _patches.push_front(dir+"sound"+ext); + _patches.push_front(dir+"speech"+ext); + _patches.push_front(dir+"terrain"+ext); + _patches.push_front(dir+"texture"+ext); + _patches.push_front(dir+"wmo"+ext); + // order goes from last opened to first opened file // ok maybe this is a bit too much but should work fine :) _patches.push_front(dir+"common"+ext);