diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 6c5dcfa..096ad48 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -319,6 +319,10 @@ void AnticheatMgr::JumpHackDetection(Player* player, MovementInfo movementInfo, if (!sConfigMgr->GetOption("Anticheat.StricterDetectJumpHack", true)) return; + //Celestial Planetarium Observer Battle has a narrow path that false flags + if (player && GetWMOAreaTableEntryByTripple(5202, 0, 24083)) + return; + if (m_Players[key].GetLastOpcode() == MSG_MOVE_JUMP && !player->IsFalling()) return;