mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fixed: Portal setup did some incorrect validity checks.
SVN r3025 (trunk)
This commit is contained in:
parent
092f53d875
commit
c9a33edee0
1 changed files with 2 additions and 2 deletions
|
@ -867,7 +867,7 @@ static void SetupFloorPortal (AStackPoint *point)
|
|||
NActorIterator it (NAME_LowerStackLookOnly, point->tid);
|
||||
sector_t *Sector = point->Sector;
|
||||
Sector->FloorSkyBox = static_cast<ASkyViewpoint*>(it.Next());
|
||||
if (Sector->FloorSkyBox != NULL || !Sector->FloorSkyBox->bAlways)
|
||||
if (Sector->FloorSkyBox != NULL && Sector->FloorSkyBox->bAlways)
|
||||
{
|
||||
Sector->FloorSkyBox->Mate = point;
|
||||
if (Sector->GetAlpha(sector_t::floor) == OPAQUE)
|
||||
|
@ -880,7 +880,7 @@ static void SetupCeilingPortal (AStackPoint *point)
|
|||
NActorIterator it (NAME_UpperStackLookOnly, point->tid);
|
||||
sector_t *Sector = point->Sector;
|
||||
Sector->CeilingSkyBox = static_cast<ASkyViewpoint*>(it.Next());
|
||||
if (Sector->CeilingSkyBox != NULL || !Sector->CeilingSkyBox->bAlways)
|
||||
if (Sector->CeilingSkyBox != NULL && Sector->CeilingSkyBox->bAlways)
|
||||
{
|
||||
Sector->CeilingSkyBox->Mate = point;
|
||||
if (Sector->GetAlpha(sector_t::ceiling) == OPAQUE)
|
||||
|
|
Loading…
Reference in a new issue