diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 4b2f761..57d821d 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -933,7 +933,6 @@ void AnticheatMgr::BGStartExploit(Player* player, MovementInfo movementInfo) { sAnticheatMgr->BGreport(player); } - if (player->GetTeamId() == TEAM_HORDE && movementInfo.pos.GetPositionY() > -536.0f) { sAnticheatMgr->BGreport(player); diff --git a/src/AnticheatScripts.cpp b/src/AnticheatScripts.cpp index d255414..c969369 100644 --- a/src/AnticheatScripts.cpp +++ b/src/AnticheatScripts.cpp @@ -32,7 +32,7 @@ #include "GameTime.h" Seconds resetTime = 0s; -Seconds lastIterationPlayer = GameTime::GetUptime() + 30s; //TODO: change 30 secs static to a configurable option +Seconds lastIterationPlayer = GameTime::GetUptime() + Seconds(sConfigMgr->GetOption("Anticheat.SaveReportsTime", 60)); class AnticheatPlayerScript : public PlayerScript {