Merge branch 'walltransfermove' into 'master'

Let players move after spinning off a wall transfer

See merge request STJr/SRB2Internal!412
This commit is contained in:
MascaraSnake 2019-10-25 15:20:20 -04:00
commit 829706a090
1 changed files with 2 additions and 0 deletions

View File

@ -1990,6 +1990,8 @@ void P_XYMovement(mobj_t *mo)
{
mo->momz = transfermomz;
mo->standingslope = NULL;
if (player->pflags & PF_SPINNING)
player->pflags = (player->pflags & ~PF_SPINNING) | (PF_JUMPED | PF_THOKKED);
}
}
#endif