From 31594981687dc38219d64d03cfb30b201c0b3045 Mon Sep 17 00:00:00 2001 From: MDIC Date: Mon, 9 May 2022 09:19:41 -0400 Subject: [PATCH] updated (module) False hit reduction teleport plan --- src/AnticheatMgr.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index eff5d3b..1e6fa4c 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -158,6 +158,15 @@ void AnticheatMgr::TeleportPlaneHackDetection(Player* player, MovementInfo movem if (!sConfigMgr->GetOption("Anticheat.DetectTelePlaneHack", true)) return; + if (player->GetAreaId()) + { + switch (player->GetAreaId()) + { + case 2100: //Maraudon https://github.com/azerothcore/azerothcore-wotlk/issues/2437 + return; + } + } + ObjectGuid key = player->GetGUID(); if (m_Players[key].GetLastOpcode() == MSG_MOVE_JUMP)