diff --git a/contrib/extractor/System.cpp b/contrib/extractor/System.cpp index 870269709..1aa1145d4 100644 --- a/contrib/extractor/System.cpp +++ b/contrib/extractor/System.cpp @@ -878,7 +878,7 @@ void ExtractMapsFromMpq() delete [] map_ids; } -bool ExtractFile( int locale, char const* mpq_name, std::string const& filename ) +bool ExtractFile( char const* mpq_name, std::string const& filename ) { FILE *output = fopen(filename.c_str(), "wb"); if(!output) @@ -927,7 +927,7 @@ void ExtractDBCFiles(int locale, bool basicLocale) string filename = path; filename += (iter->c_str() + strlen("DBFilesClient\\")); - if(ExtractFile(locale, iter->c_str(), filename)) + if(ExtractFile(iter->c_str(), filename)) ++count; } printf("Extracted %u DBC files\n\n", count); diff --git a/contrib/extractor/ad.exe b/contrib/extractor/ad.exe index 1e1e0b33d..97a8fde49 100755 Binary files a/contrib/extractor/ad.exe and b/contrib/extractor/ad.exe differ diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ea3100063..5ef58e304 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9166" + #define REVISION_NR "9167" #endif // __REVISION_NR_H__