mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-09 09:33:10 +00:00
Decrease max top speed rubberband
This commit is contained in:
parent
9bf2293481
commit
f236fcc5e2
1 changed files with 2 additions and 2 deletions
|
|
@ -430,8 +430,8 @@ fixed_t K_BotTopSpeedRubberband(player_t *player)
|
|||
}
|
||||
else
|
||||
{
|
||||
// Max at +25% for level 9 bots
|
||||
rubberband = FRACUNIT + ((rubberband - FRACUNIT) / 4);
|
||||
// Max at +10% for level 9 bots
|
||||
rubberband = FRACUNIT + ((rubberband - FRACUNIT) / 10);
|
||||
}
|
||||
|
||||
// Only allow you to go faster than your regular top speed if you're facing the right direction
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue