From 958463d5ff775310cb6c03f56b5e67e08bfd4f2f Mon Sep 17 00:00:00 2001 From: Andreas Maerten <24669514+Yimura@users.noreply.github.com> Date: Sun, 16 Apr 2023 00:29:38 +0200 Subject: [PATCH] fix(BytePatch): incorrect explode patch (#1245) --- src/byte_patch_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/byte_patch_manager.cpp b/src/byte_patch_manager.cpp index 7c125100..3c1550cd 100644 --- a/src/byte_patch_manager.cpp +++ b/src/byte_patch_manager.cpp @@ -23,7 +23,7 @@ namespace big //Patch blocked explosions toxic::explosion_anti_cheat_bypass::m_can_blame_others = - memory::byte_patch::make(g_pointers->m_gta.m_explosion_patch.as(), 0xE990).get(); + memory::byte_patch::make(g_pointers->m_gta.m_blame_explode.as(), 0xE990).get(); toxic::explosion_anti_cheat_bypass::m_can_use_blocked_explosions = memory::byte_patch::make(g_pointers->m_gta.m_explosion_patch.sub(12).as(), 0x9090).get();