diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 041a065..728d75e 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -478,6 +478,15 @@ void AnticheatMgr::AntiSwimHackDetection(Player* player, MovementInfo movementIn if (!sConfigMgr->GetOption("Anticheat.AntiSwimHack", true)) return; + if (player->GetAreaId()) + { + switch (player->GetAreaId()) + { + case 2100: //Maraudon https://github.com/azerothcore/azerothcore-wotlk/issues/2437 + return; + } + } + if (player->GetLiquidData().Status == LIQUID_MAP_UNDER_WATER && !movementInfo.HasMovementFlag(MOVEMENTFLAG_SWIMMING)) { if (sConfigMgr->GetOption("Anticheat.WriteLog", true))