mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Change 3*rad/4 to rad
Should let them use slightly more of the track
This commit is contained in:
parent
5f97070a47
commit
d2aa03b44e
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue