From d8b80e377edb0b535859f34db190f3f827ce5d2b Mon Sep 17 00:00:00 2001 From: iCE Date: Sat, 1 Oct 2022 18:48:15 +0200 Subject: [PATCH] Horde AV BG fine tuning --- src/AnticheatMgr.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 4ee93e5..0fd3f3d 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -935,7 +935,9 @@ void AnticheatMgr::BGStartExploit(Player* player, MovementInfo movementInfo) { sAnticheatMgr->BGreport(player); } - if (player->GetTeamId() == TEAM_HORDE && movementInfo.pos.GetPositionY() > -536.0f) + if ((player->GetTeamId() == TEAM_HORDE && movementInfo.pos.GetPositionY() > -536.0f) || + (player->GetTeamId() == TEAM_HORDE && movementInfo.pos.GetPositionX() > -1283.33f) || + (player->GetTeamId() == TEAM_HORDE && movementInfo.pos.GetPositionY() < -716.0f)) { sAnticheatMgr->BGreport(player); }