diff options
author | robinsch <hello@robinsch.com> | 2024-02-06 14:26:28 +0100 |
---|---|---|
committer | robinsch <hello@robinsch.com> | 2024-02-06 14:26:28 +0100 |
commit | be4568c64fd6d320720e3152dda2f390947da085 (patch) | |
tree | 7a4f6ca3ab6d739cfcd220a4612468bddf10c4e9 | |
parent | 180e2c583aa234ee3ea974ad7d3a4decb4017b23 (diff) |
More precise area trigger checks
-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; |