- added a function to execute action specials and changed all calls to use this function. This was done to make it easier to check such calls.
SVN r3152 (trunk)
This commit is contained in:
parent
99df7354b1
commit
1ea5cc8bd8
19 changed files with 77 additions and 38 deletions
|
|
@ -474,7 +474,13 @@ void P_Recalculate3DFloors(sector_t * sector)
|
|||
|
||||
oldlist.Delete(pickindex);
|
||||
|
||||
if (pick->flags&(FF_SWIMMABLE|FF_TRANSLUCENT) && pick->flags&FF_EXISTS)
|
||||
if (pick->flags & FF_THISINSIDE)
|
||||
{
|
||||
// These have the floor higher than the ceiling and cannot be processed
|
||||
// by the clipping code below.
|
||||
ffloors.Push(pick);
|
||||
}
|
||||
else if (pick->flags&(FF_SWIMMABLE|FF_TRANSLUCENT) && pick->flags&FF_EXISTS)
|
||||
{
|
||||
clipped=pick;
|
||||
clipped_top=height;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue