* Add MPQ file names for 1.12.X to MPQHelper

This commit is contained in:
shlainn 2011-09-11 09:38:27 +02:00
parent 70a1aac7fd
commit 43a40c3cb0

View File

@ -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);