diff options
-rw-r--r-- | Patcher.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Patcher.cpp b/Patcher.cpp index 8196d21..496d948 100644 --- a/Patcher.cpp +++ b/Patcher.cpp @@ -82,11 +82,14 @@ int main(int argc, char** argv) //// naked character issue write_pos(0x1DDC5D, 0xEB); - //// patches missiles impacting with terrain + // patches missiles impacting with terrain write_pos(0x1FC99E, 0x00); write_pos(0x1FC8C7, 0x00); write_pos(0x1FC735, 0x00); + // patch mail request timeout + write_pos(0x6D899, { 0x05, 0x01, 0x00, 0x00, 0x00 }); + std::cout << "World of Warcraft exe has been patched!\n"; return 0; } |