Change 3*rad/4 to rad

Should let them use slightly more of the track
This commit is contained in:
Sally Coolatta 2020-05-28 18:45:14 -04:00
parent 5f97070a47
commit d2aa03b44e

View file

@ -752,7 +752,7 @@ void K_BuildBotTiccmd(player_t *player, ticcmd_t *cmd)
// Increase radius with speed
// At low speed, the CPU will try to be more accurate
// At high speed, they're more likely to lawnmower
speedrad += FixedMul(speedmul, (3*rad/4) - speedrad);
speedrad += FixedMul(speedmul, rad - speedrad);
if (speedrad < playerwidth)
{