aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobinsch <hello@robinsch.com>2023-12-02 12:25:21 +0100
committerrobinsch <hello@robinsch.com>2023-12-02 12:25:21 +0100
commit2545ee0127818680876fb9e82ecb0e1128690ca1 (patch)
tree5bd3e0afc6b30447b3f8fb167d69dfb1614940cc
parent3b323813009c62a236c26901afdc9eedf6740099 (diff)
Added a fix that no longer requires you to use /reload or wait 1 minute to receive new mail ingame.
-rw-r--r--Patcher.cpp5
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;
}