From 7126f90a67587d77f0b50e585d57b37fe51f8cdd Mon Sep 17 00:00:00 2001 From: MDIC Date: Wed, 9 Mar 2022 12:42:33 -0500 Subject: [PATCH] Fix False Positive Blink Added Mage's Blink to the exception list as it was making false positives. --- src/AnticheatMgr.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 8b2a990..e07eb99 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -419,6 +419,12 @@ void AnticheatMgr::SpeedHackDetection(Player* player, MovementInfo movementInfo) return; } + // Mage Class Blink causes false flags so we add the exception here + if (player->getClass() == CLASS_MAGE && player->GetAura(1953)) + { + return; + } + // this is the distance doable by the player in 1 sec, using the time done to move to this point. uint32 clientSpeedRate = distance2D * 1000 / timeDiff;