diff --git a/src/hacks/Aimbot.cpp b/src/hacks/Aimbot.cpp index ea502571..7175717b 100644 --- a/src/hacks/Aimbot.cpp +++ b/src/hacks/Aimbot.cpp @@ -720,7 +720,10 @@ bool IsTargetStateGood(CachedEntity *entity) } // Preform hitbox prediction - int hitbox = BestHitbox(entity); + int hitbox = BestHitbox(entity); + // Bad hitbox + if (hitbox == -1) + return false; AimbotCalculatedData_s &cd = calculated_data_array[entity->m_IDX]; cd.hitbox = hitbox;