mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 17:02:24 +00:00
453: Commented out, but allow existing fade overlap of 2 tics (or speed*2)
This commit is contained in:
parent
5b16590ba2
commit
f5b25c91f5
1 changed files with 4 additions and 0 deletions
|
@ -3436,7 +3436,11 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
|
|||
// Prevent continuous execs from interfering on an existing fade
|
||||
if (!(line->flags & ML_EFFECT5)
|
||||
&& rover->fadingdata)
|
||||
//&& ((fade_t*)rover->fadingdata)->timer > (ticbased ? 2 : speed*2))
|
||||
{
|
||||
CONS_Debug(DBG_GAMELOGIC, "Line type 453 Executor: Fade FOF thinker already exists, timer: %d", ((fade_t*)rover->fadingdata)->timer);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (speed > 0)
|
||||
P_AddFakeFloorFader(rover, secnum, j,
|
||||
|
|
Loading…
Reference in a new issue