diff options
author | robinsch <robinsch@users.noreply.github.com> | 2024-02-10 08:28:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 08:28:38 +0100 |
commit | 28fb36b74beba83c0808cf23aabe870e401b06cb (patch) | |
tree | 913955d0b63e7f16c4423f68f906e8cf1a2fe49e | |
parent | cd9911c48299555837de6a5f34b38e396971119f (diff) |
Allow chat commands while dead
-rw-r--r-- | Patcher/Patcher.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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<uint8_t>(0x10CA41, 0xEB); + std::cout << "World of Warcraft exe has been patched!\n"; return 0; } |