mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-15 01:01:43 +00:00
Wipeout slowdown in offroad is static
This commit is contained in:
parent
c53144ecd6
commit
5518a19945
1 changed files with 2 additions and 1 deletions
|
@ -5454,7 +5454,8 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
// Wipeout slowdown
|
||||
if (player->kartstuff[k_spinouttimer] && player->kartstuff[k_wipeoutslow])
|
||||
{
|
||||
player->mo->friction -= FixedMul(2456, player->kartstuff[k_offroad]);
|
||||
if (player->kartstuff[k_offroad])
|
||||
player->mo->friction -= 4912;
|
||||
if (player->kartstuff[k_wipeoutslow] == 1)
|
||||
player->mo->friction -= 9824;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue