Fix bug where "standing" on top of a sprite structure underwater would cause the player to act as if they were no longer underwater

git-svn-id: https://svn.eduke32.com/eduke32@7955 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-08-12 03:15:32 +00:00 committed by Christoph Oelckers
parent 620f0da65b
commit 44d5371ad3
1 changed files with 2 additions and 1 deletions

View File

@ -4712,6 +4712,7 @@ void P_ProcessInput(int playerNum)
stepHeight = max(stepHeight, 0);
}
else stepHeight = 0;
pPlayer->pos.z += stepHeight;
getzrange(&pPlayer->pos, pPlayer->cursectnum, &ceilZ, &highZhit, &floorZ, &lowZhit, pPlayer->clipdist - GETZRANGECLIPDISTOFFSET, CLIPMASK0);
@ -4793,7 +4794,7 @@ void P_ProcessInput(int playerNum)
{
// EDuke32 extension: xvel of 1 makes a sprite be never regarded as a bridge.
if ((sprite[spriteNum].xvel & 1) == 0)
if (sectorLotag != ST_2_UNDERWATER && (sprite[spriteNum].xvel & 1) == 0)
{
sectorLotag = 0;
pPlayer->footprintcount = 0;