mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Adjust wall steer radius with speed
This commit is contained in:
parent
19f352e4a4
commit
f442b934cc
1 changed files with 1 additions and 1 deletions
|
|
@ -589,7 +589,7 @@ static fixed_t K_BotReducePrediction(player_t *player)
|
|||
INT32 xl, xh, yl, yh, bx, by;
|
||||
|
||||
botmo = player->mo;
|
||||
distancetocheck = player->mo->radius * 16;
|
||||
distancetocheck = (player->mo->radius * 8) + (player->speed * 4);
|
||||
closestlinedist = INT32_MAX;
|
||||
|
||||
tmx = player->mo->x;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue