From 7189435317ef28aba27dff48f9deea63a4e54cd7 Mon Sep 17 00:00:00 2001 From: aUniqueUser Date: Thu, 31 Dec 2020 13:30:01 -0500 Subject: [PATCH] Fix antiaim bug --- src/hacks/AntiAim.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hacks/AntiAim.cpp b/src/hacks/AntiAim.cpp index 00c51e03..fd19b4ae 100644 --- a/src/hacks/AntiAim.cpp +++ b/src/hacks/AntiAim.cpp @@ -370,7 +370,7 @@ void ProcessUserCmd(CUserCmd *cmd) if (!ShouldAA(cmd)) return; // Not running - if (!pitch && !yaw) + if (!pitch_mode && !yaw_mode) return; static bool keepmode = true; keepmode = !keepmode;