From 9b36015636efb2a7c451fac3add58b4148030f7f Mon Sep 17 00:00:00 2001 From: ineed bots Date: Sun, 10 Dec 2023 05:18:58 -0600 Subject: [PATCH] small fix --- maps/mp/bots/_bot_internal.gsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/mp/bots/_bot_internal.gsc b/maps/mp/bots/_bot_internal.gsc index 241c166..97d993d 100644 --- a/maps/mp/bots/_bot_internal.gsc +++ b/maps/mp/bots/_bot_internal.gsc @@ -1397,7 +1397,7 @@ aim_loop() conedot = getConeDot( aimpos, eyePos, angles ); - if ( conedot > 0.999 && lengthsquared( aimoffset ) < 0.05 ) + if ( !nadeAimOffset && conedot > 0.999 && lengthsquared( aimoffset ) < 0.05 ) self thread bot_lookat( aimpos, 0.05 ); else self thread bot_lookat( aimpos, aimspeed );