Another thing that probably needed to check for slopes

This commit is contained in:
Monster Iestyn 2016-03-29 22:32:09 +01:00
parent ef832dd8b8
commit ee00da6a74
1 changed files with 5 additions and 0 deletions

View File

@ -2032,8 +2032,13 @@ void R_StoreWallRange(INT32 start, INT32 stop)
markceiling = false;
}
#ifdef ESLOPE
if ((worldhigh <= worldbottom && worldhighslope <= worldbottomslope)
|| (worldlow >= worldtop && worldlowslope >= worldtopslope))
#else
if (backsector->ceilingheight <= frontsector->floorheight ||
backsector->floorheight >= frontsector->ceilingheight)
#endif
{
// closed door
markceiling = markfloor = true;