mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-16 01:31:30 +00:00
Don't apply autobrake on NiGHTS bumpers
This commit is contained in:
parent
432c1ab862
commit
08f35c0792
1 changed files with 2 additions and 1 deletions
|
@ -9943,7 +9943,8 @@ void P_PlayerThink(player_t *player)
|
|||
|| player->panim == PA_PAIN
|
||||
|| !player->mo->health
|
||||
|| player->climbing
|
||||
|| player->pflags & (PF_SPINNING|PF_SLIDING))
|
||||
|| player->pflags & (PF_SPINNING|PF_SLIDING)
|
||||
|| player->bumpertime)
|
||||
player->pflags &= ~PF_APPLYAUTOBRAKE;
|
||||
else if (currentlyonground || player->powers[pw_tailsfly])
|
||||
player->pflags |= PF_APPLYAUTOBRAKE;
|
||||
|
|
Loading…
Reference in a new issue