From 28fb36b74beba83c0808cf23aabe870e401b06cb Mon Sep 17 00:00:00 2001 From: robinsch Date: Sat, 10 Feb 2024 08:28:38 +0100 Subject: Allow chat commands while dead --- Patcher/Patcher.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Patcher/Patcher.cpp b/Patcher/Patcher.cpp index 9ca8e25..4e53c1c 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -100,6 +100,9 @@ int main(int argc, char** argv) // Return of "The Blue Moon" write_pos(0x5CFBC0, { 0xC7, 0x05, 0x74, 0x8E, 0xD3, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xC3 }); + // Allow chat commands while dead + write_pos(0x10CA41, 0xEB); + std::cout << "World of Warcraft exe has been patched!\n"; return 0; } -- cgit v1.2.3