Don't apply autobrake on NiGHTS bumpers

This commit is contained in:
mazmazz 2018-08-15 23:40:42 -04:00
parent 432c1ab862
commit 08f35c0792
1 changed files with 2 additions and 1 deletions

View File

@ -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;