aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2024-06-28 18:47:42 +0200
committerOvahlord <dreadkiller@gmx.de>2024-06-28 18:47:42 +0200
commit9b2c78694dce80c2aa4528dccaa6f6a441cf2459 (patch)
tree565c801d0a5ca754ee8fcea428940cded83ed056
parent315393f1caacd22dcaf1ed486ca0527444b16b80 (diff)
Tools/Extractors: updated retard check messages to be more clear about what version is supported
-rw-r--r--src/tools/map_extractor/System.cpp3
-rw-r--r--src/tools/vmap4_extractor/vmapexport.cpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp
index 1677b9d268f..59499aab599 100644
--- a/src/tools/map_extractor/System.cpp
+++ b/src/tools/map_extractor/System.cpp
@@ -1446,9 +1446,10 @@ static bool RetardCheck()
if (itr->path().extension() == ".MPQ")
{
printf("MPQ files found in Data directory!\n");
- printf("This tool works only with World of Warcraft: Battle for Azeroth\n");
+ printf("This tool works only with World of Warcraft: Cataclysm Classic (4.4.x, NOT 4.3.4.15595)\n");
printf("\n");
printf("To extract maps for Wrath of the Lich King, rebuild tools using 3.3.5 branch!\n");
+ printf("To extract maps for the current retail version, rebuild tools using master branch!\n");
printf("\n");
printf("Press ENTER to exit...\n");
getchar();
diff --git a/src/tools/vmap4_extractor/vmapexport.cpp b/src/tools/vmap4_extractor/vmapexport.cpp
index 69bf428fc71..2724289bd8a 100644
--- a/src/tools/vmap4_extractor/vmapexport.cpp
+++ b/src/tools/vmap4_extractor/vmapexport.cpp
@@ -435,9 +435,10 @@ static bool RetardCheck()
if (itr->path().extension() == ".MPQ")
{
printf("MPQ files found in Data directory!\n");
- printf("This tool works only with World of Warcraft: Battle for Azeroth\n");
+ printf("This tool works only with World of Warcraft: Cataclysm Classic (4.4.x, NOT 4.3.4.15595)\n");
printf("\n");
printf("To extract maps for Wrath of the Lich King, rebuild tools using 3.3.5 branch!\n");
+ printf("To extract maps for the current retail version, rebuild tools using master branch!\n");
printf("\n");
printf("Press ENTER to exit...\n");
getchar();