Fix tic-based bug returning early

This commit is contained in:
mazmazz 2018-09-09 19:57:41 -04:00
parent 43ae628adc
commit ea2276eb07
1 changed files with 1 additions and 1 deletions

View File

@ -7493,7 +7493,7 @@ static boolean P_FadeFakeFloor(ffloor_t *rover, INT16 destvalue, INT16 speed, IN
alpha = rover->alpha;
// routines specific to fade in and fade out
if (alpha == destvalue)
if (!ticbased && alpha == destvalue)
return stillfading;
else if (alpha > destvalue) // fade out
{