From dab116a0bd305e7b66bd874a16acdb6e954a8281 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 13 Oct 2020 21:43:37 -0700 Subject: [PATCH] CODE --- src/p_maputl.c | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/src/p_maputl.c b/src/p_maputl.c index a0ef680fb..12365067a 100644 --- a/src/p_maputl.c +++ b/src/p_maputl.c @@ -467,6 +467,7 @@ void P_LineOpening(line_t *linedef, mobj_t *mobj) else { // Set open and high/low values here fixed_t frontheight, backheight; + sector_t * sector; frontheight = P_GetCeilingZ(mobj, front, tmx, tmy, linedef); backheight = P_GetCeilingZ(mobj, back, tmx, tmy, linedef); @@ -475,15 +476,18 @@ void P_LineOpening(line_t *linedef, mobj_t *mobj) { opentop = frontheight; highceiling = backheight; - opentopslope = front->c_slope; + sector = front; } else { opentop = backheight; highceiling = frontheight; - opentopslope = back->c_slope; + sector = back; } + opentopslope = sector->c_slope; + openceilingdiff = ( mobj->z + mobj->height - P_GetSectorCeilingZAt(sector, cross.x, cross.y) ); + frontheight = P_GetFloorZ(mobj, front, tmx, tmy, linedef); backheight = P_GetFloorZ(mobj, back, tmx, tmy, linedef); @@ -491,26 +495,17 @@ void P_LineOpening(line_t *linedef, mobj_t *mobj) { openbottom = frontheight; lowfloor = backheight; - openbottomslope = front->f_slope; + sector = front; } else { openbottom = backheight; lowfloor = frontheight; - openbottomslope = back->f_slope; + sector = back; } - openfloordiff = - abs( - P_GetSectorFloorZAt(front, cross.x, cross.y) - - P_GetSectorFloorZAt(back, cross.x, cross.y) - ); - - openceilingdiff = - abs( - P_GetSectorCeilingZAt(front, cross.x, cross.y) - - P_GetSectorCeilingZAt(back, cross.x, cross.y) - ); + openbottomslope = sector->f_slope; + openfloordiff = ( P_GetSectorFloorZAt(sector, cross.x, cross.y) - mobj->z ); } if (mobj)