diff options
author | ModoX <moardox@gmail.com> | 2022-03-13 19:24:14 +0100 |
---|---|---|
committer | ModoX <moardox@gmail.com> | 2022-03-13 19:24:14 +0100 |
commit | 09b36d8f75d1390232187f69596e12e589311e60 (patch) | |
tree | 5b3a5a12435b028442738be3ee699f681b0eeb8a | |
parent | 8447f627bac611b7f5450a024f7f5febc9481190 (diff) |
Tools/Extractors: Use TACTKeys from wowdev TACTKeys repo instead of wow.tools
* wow.tools will kill /api.php?type=tactkeys soon
-rw-r--r-- | src/tools/extractor_common/CascHandles.cpp | 2 |
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()); } |