mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-07 07:22:54 +00:00
Remove bot friction
Not convinced this fixes anything anymore
This commit is contained in:
parent
3a57e8eca5
commit
082d253553
1 changed files with 5 additions and 0 deletions
|
|
@ -473,6 +473,10 @@ fixed_t K_BotTopSpeedRubberband(player_t *player)
|
|||
--------------------------------------------------*/
|
||||
fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict)
|
||||
{
|
||||
#if 1
|
||||
(void)player;
|
||||
return frict;
|
||||
#else
|
||||
fixed_t rubberband = K_BotRubberband(player) - FRACUNIT;
|
||||
fixed_t newfrict;
|
||||
|
||||
|
|
@ -490,6 +494,7 @@ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict)
|
|||
newfrict = FRACUNIT;
|
||||
|
||||
return newfrict;
|
||||
#endif
|
||||
}
|
||||
|
||||
/*--------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue