diff options
Diffstat (limited to 'Patcher/Patcher.cpp')
-rw-r--r-- | Patcher/Patcher.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Patcher/Patcher.cpp b/Patcher/Patcher.cpp index f307452..efe1013 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -98,7 +98,10 @@ int main(int argc, char** argv) // better support for planet colors when using darker night mods write_pos<uint8_t>(0x2F2B77, 0xEB); - write_pos<uint8_t>(0x2F2B77, 0xEB); + write_pos<uint8_t>(0x2F2B77, 0xEB); + + // patch area trigger timer to be more precise + write_pos<uint8_t>(0x1DB241, 50); std::cout << "World of Warcraft exe has been patched!\n"; return 0; |