fix: aimbot not working if no ESP

This commit is contained in:
2023-12-30 12:22:18 +01:00
parent b0fdadaed6
commit d381999eb8

View File

@@ -67,7 +67,7 @@ void Draw() {
RGBA Cyan = { 0, 231, 255, 255 }; RGBA Cyan = { 0, 231, 255, 255 };
if (crosshair) DrawCircleFilled(Process::WindowWidth/2, Process::WindowHeight/2, 3, &Cyan); 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; return;
} }