From 325f08c937c36be644940e73ba463b495fe1d025 Mon Sep 17 00:00:00 2001 From: Julian Rowe Date: Wed, 17 May 2017 01:41:16 -0500 Subject: [PATCH] Fixed var being int when should be float --- src/hacks/Aimbot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hacks/Aimbot.cpp b/src/hacks/Aimbot.cpp index 8e90ad4b..6c279ec5 100644 --- a/src/hacks/Aimbot.cpp +++ b/src/hacks/Aimbot.cpp @@ -696,8 +696,8 @@ void PaintTraverse() { int BestHitbox(CachedEntity* target) { PROF_SECTION(CM_aimbot_besthitbox); - int preferred, ci, flags, bdmg, bodmg; - float cdmg; + int preferred, ci, flags, bdmg; + float cdmg, bodmg; bool ground; preferred = hitbox; switch ((int)hitbox_mode) {