From 898bab7f9da61eaf9a5837dd4c4af65749d129a2 Mon Sep 17 00:00:00 2001 From: MDIC Date: Thu, 24 Mar 2022 11:26:48 -0400 Subject: [PATCH] Fix (Module) Bool Flipped Bool Flipped for Climb Hack. --- src/AnticheatMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AnticheatMgr.cpp b/src/AnticheatMgr.cpp index 9a104ab..3bea46d 100644 --- a/src/AnticheatMgr.cpp +++ b/src/AnticheatMgr.cpp @@ -264,7 +264,7 @@ void AnticheatMgr::StartHackDetection(Player* player, MovementInfo movementInfo, // basic detection void AnticheatMgr::ClimbHackDetection(Player* player, MovementInfo movementInfo, uint32 opcode) { - if (!sConfigMgr->GetOption("Anticheat.DetectClimbHack", false)) + if (!sConfigMgr->GetOption("Anticheat.DetectClimbHack", true)) return; ObjectGuid key = player->GetGUID();