From d381999eb82cc496e774d3d5273310f1f8ea8c3a Mon Sep 17 00:00:00 2001 From: ALittlePatate Date: Sat, 30 Dec 2023 12:22:18 +0100 Subject: [PATCH] fix: aimbot not working if no ESP --- ImGuiExternal/Source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ImGuiExternal/Source.cpp b/ImGuiExternal/Source.cpp index 5d80ea3..5bd47af 100644 --- a/ImGuiExternal/Source.cpp +++ b/ImGuiExternal/Source.cpp @@ -67,7 +67,7 @@ void Draw() { RGBA Cyan = { 0, 231, 255, 255 }; if (crosshair) DrawCircleFilled(Process::WindowWidth/2, Process::WindowHeight/2, 3, &Cyan); - if (!ally_esp && !enemy_esp) { + if (!ally_esp && !enemy_esp && !aimbot && !show_fov) { return; }