From 9ec75c4a6629635c40c07788e7d6f6a95c05675b Mon Sep 17 00:00:00 2001 From: MDIC Date: Thu, 19 May 2022 10:23:49 -0400 Subject: [PATCH] fix (detection): Better register hits for gravity hacks --- src/AnticheatMgr.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 54b5e6f..db350e2 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -722,6 +722,9 @@ bool AnticheatMgr::MustCheckTempReports(uint8 type) if (type == IGNORE_CONTROL_REPORT) return false; + if (type == GRAVITY_HACK_REPORT) + return false; + return true; }