From 71aa3e5577cd0d19b5c7e89d19d1929da44d556c Mon Sep 17 00:00:00 2001 From: Rimmuru <81404937+Rimmuru@users.noreply.github.com> Date: Wed, 16 Nov 2022 17:07:59 +0000 Subject: [PATCH] Improved protections (#598) --- src/hooks/protections/received_event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/protections/received_event.cpp b/src/hooks/protections/received_event.cpp index 7d086457..7120f226 100644 --- a/src/hooks/protections/received_event.cpp +++ b/src/hooks/protections/received_event.cpp @@ -81,7 +81,7 @@ namespace big uint16_t unk2 = buffer->Read(13); uint32_t action = buffer->Read(8); - if (action >= 15 && action <= 18) + if (action >= 15 && action <= 18 || action == 33) { g_pointers->m_send_event_ack(event_manager, source_player, target_player, event_index, event_handled_bitset);