P_FloorzAtPos: Check the normal floor's slope as well as FOF slopes, silly.

This commit is contained in:
Monster Iestyn 2017-08-30 19:21:23 +01:00
parent 9b788b55f6
commit 50917d2ee2
1 changed files with 5 additions and 0 deletions

View File

@ -4000,6 +4000,11 @@ fixed_t P_FloorzAtPos(fixed_t x, fixed_t y, fixed_t z, fixed_t height)
sector_t *sec = R_PointInSubsector(x, y)->sector;
fixed_t floorz = sec->floorheight;
#ifdef ESLOPE
if (sec->f_slope)
floorz = P_GetZAt(sec->f_slope, x, y);
#endif
// Intercept the stupid 'fall through 3dfloors' bug Tails 03-17-2002
if (sec->ffloors)
{