This commit is contained in:
Christoph Oelckers 2016-05-03 19:46:09 +02:00
commit 4ea3339e40
1 changed files with 5 additions and 2 deletions

View File

@ -126,13 +126,16 @@ void ASkyPicker::PostBeginPlay ()
else
{
int boxindex = P_GetSkyboxPortal(box);
// Do not override special portal types, only regular skies.
if (0 == (args[1] & 2))
{
Sector->Portals[sector_t::ceiling] = boxindex;
if (Sector->GetPortalType(sector_t::ceiling) == PORTS_SKYVIEWPOINT)
Sector->Portals[sector_t::ceiling] = boxindex;
}
if (0 == (args[1] & 1))
{
Sector->Portals[sector_t::floor] = boxindex;
if (Sector->GetPortalType(sector_t::floor) == PORTS_SKYVIEWPOINT)
Sector->Portals[sector_t::floor] = boxindex;
}
}
Destroy ();