From 551e66fb2122123df4ca5e6b3da7750ffcac3424 Mon Sep 17 00:00:00 2001 From: ineed bots Date: Sun, 10 Dec 2023 05:18:35 -0600 Subject: [PATCH] fix --- maps/mp/bots/_bot_internal.gsc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/maps/mp/bots/_bot_internal.gsc b/maps/mp/bots/_bot_internal.gsc index 7a96f4e..8a96737 100644 --- a/maps/mp/bots/_bot_internal.gsc +++ b/maps/mp/bots/_bot_internal.gsc @@ -1142,7 +1142,10 @@ aim_loop() conedot = getConeDot( aimpos, eyePos, angles ); - self thread bot_lookat( aimpos, aimspeed ); + if ( !nadeAimOffset && conedot > 0.999 && lengthsquared( aimoffset ) < 0.05 ) + self thread bot_lookat( aimpos, 0.05 ); + else + self thread bot_lookat( aimpos, aimspeed ); } if ( isplay && !self.bot.isknifingafter && conedot > 0.9 && dist < level.bots_maxKnifeDistance && trace_time > reaction_time && getCvarInt( "bots_play_knife" ) )