aboutsummaryrefslogtreecommitdiff
path: root/src/tools/extractor_common
diff options
context:
space:
mode:
authorModoX <moardox@gmail.com>2022-03-13 19:24:14 +0100
committerModoX <moardox@gmail.com>2022-03-13 19:24:14 +0100
commit09b36d8f75d1390232187f69596e12e589311e60 (patch)
tree5b3a5a12435b028442738be3ee699f681b0eeb8a /src/tools/extractor_common
parent8447f627bac611b7f5450a024f7f5febc9481190 (diff)
Tools/Extractors: Use TACTKeys from wowdev TACTKeys repo instead of wow.tools
* wow.tools will kill /api.php?type=tactkeys soon
Diffstat (limited to 'src/tools/extractor_common')
-rw-r--r--src/tools/extractor_common/CascHandles.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/extractor_common/CascHandles.cpp b/src/tools/extractor_common/CascHandles.cpp
index 49c7e261705..b3f43ce42e8 100644
--- a/src/tools/extractor_common/CascHandles.cpp
+++ b/src/tools/extractor_common/CascHandles.cpp
@@ -153,7 +153,7 @@ CASC::Storage::Storage(HANDLE handle) : _handle(handle)
bool CASC::Storage::LoadOnlineTactKeys()
{
// attempt to download only once, not every storage opening
- static Optional<std::string> const tactKeys = DownloadFile("wow.tools", 443, "/api.php?type=tactkeys");
+ static Optional<std::string> const tactKeys = DownloadFile("raw.githubusercontent.com", 443, "/wowdev/TACTKeys/master/WoW.txt");
return tactKeys && CascImportKeysFromString(_handle, tactKeys->c_str());
}