mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Never handle FF_EXISTS if FF_BUSTUP
This commit is contained in:
parent
61960937b0
commit
2a89fcfc87
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…
Add table
Reference in a new issue