mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-22 10:02:01 +00:00
Merge branch 'better-water-sliptide' into 'master'
Stronger underwater sliptiding See merge request KartKrew/Kart!1521
This commit is contained in:
commit
24333edeb9
1 changed files with 3 additions and 2 deletions
|
|
@ -10703,9 +10703,10 @@ void K_AdjustPlayerFriction(player_t *player)
|
|||
{
|
||||
player->mo->friction += 614;
|
||||
}
|
||||
else if (player->mo->eflags & MFE_UNDERWATER)
|
||||
else if ((player->mo->eflags & MFE_UNDERWATER))
|
||||
{
|
||||
player->mo->friction += 312;
|
||||
if (!K_Sliptiding(player))
|
||||
player->mo->friction += 312;
|
||||
}
|
||||
|
||||
// Wipeout slowdown
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue