From 2545ee0127818680876fb9e82ecb0e1128690ca1 Mon Sep 17 00:00:00 2001 From: robinsch Date: Sat, 2 Dec 2023 12:25:21 +0100 Subject: Added a fix that no longer requires you to use /reload or wait 1 minute to receive new mail ingame. --- Patcher.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.3