mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-25 13:11:54 +00:00
Never handle FF_EXISTS if FF_BUSTUP
This commit is contained in:
parent
66dc84509a
commit
dc964738eb
1 changed files with 2 additions and 2 deletions
|
@ -7526,7 +7526,7 @@ static boolean P_FadeFakeFloor(ffloor_t *rover, INT16 destvalue, INT16 speed,
|
||||||
// routines common to both fade in and fade out
|
// routines common to both fade in and fade out
|
||||||
if (!stillfading)
|
if (!stillfading)
|
||||||
{
|
{
|
||||||
if (doexists)
|
if (doexists && !(rover->spawnflags & FF_BUSTUP))
|
||||||
{
|
{
|
||||||
if (alpha <= 1)
|
if (alpha <= 1)
|
||||||
rover->flags &= ~FF_EXISTS;
|
rover->flags &= ~FF_EXISTS;
|
||||||
|
@ -7550,7 +7550,7 @@ static boolean P_FadeFakeFloor(ffloor_t *rover, INT16 destvalue, INT16 speed,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (doexists)
|
if (doexists && !(rover->spawnflags & FF_BUSTUP))
|
||||||
rover->flags |= FF_EXISTS;
|
rover->flags |= FF_EXISTS;
|
||||||
|
|
||||||
if (dotranslucent)
|
if (dotranslucent)
|
||||||
|
|
Loading…
Reference in a new issue