mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-11 09:12:22 +00:00
Reduce max catchup top speed
This commit is contained in:
parent
39964491e2
commit
4d3db89a15
1 changed files with 1 additions and 1 deletions
|
|
@ -2704,7 +2704,7 @@ fixed_t K_GetKartSpeed(player_t *player, boolean doboostpower)
|
|||
|
||||
if (K_PlayerUsesBotMovement(player))
|
||||
{
|
||||
fixed_t speedmul = K_BotRubberband(player);
|
||||
fixed_t speedmul = FRACUNIT + ((K_BotRubberband(player) - FRACUNIT) / 2);
|
||||
|
||||
// Give top speed a buff for bots, since it's a fairly weak stat without drifting
|
||||
speedmul += ((kartspeed-1) * FRACUNIT / 8) / 10; // +10% for speed 9
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue