mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed: Checking for slopes at untextured bottom parts of the wall checked the ceiling's slope not the floor's.
This commit is contained in:
parent
37f43617d9
commit
d0b30f31e1
1 changed files with 1 additions and 1 deletions
|
@ -1588,7 +1588,7 @@ void GLWall::Process(seg_t *seg, sector_t * frontsector, sector_t * backsector)
|
|||
}
|
||||
else if (!(seg->sidedef->Flags & WALLF_POLYOBJ))
|
||||
{
|
||||
if ((frontsector->ceilingplane.isSlope() || backsector->ceilingplane.isSlope()) &&
|
||||
if ((frontsector->floorplane.isSlope() || backsector->floorplane.isSlope()) &&
|
||||
frontsector->GetTexture(sector_t::floor) != skyflatnum &&
|
||||
backsector->GetTexture(sector_t::floor) != skyflatnum)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue