- Fixed: The BUILD map loader did not create extsector information, and it also did not

set valid sidedef references for the backs of one-sided lines.

SVN r2218 (trunk)
This commit is contained in:
Randy Heit 2010-03-18 02:09:08 +00:00
commit 92890066b6
2 changed files with 22 additions and 10 deletions

View file

@ -711,9 +711,15 @@ void P_FloodZone (sector_t *sec, int zonenum)
continue;
if (check->frontsector == sec)
{
assert(check->backsector != NULL);
other = check->backsector;
}
else
{
assert(check->frontsector != NULL);
other = check->frontsector;
}
if (other->ZoneNumber != zonenum)
P_FloodZone (other, zonenum);