mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-17 01:21:18 +00:00
Disable ML_EFFECT5 on linedef executor triggers for UDMF maps (what a pointless feature)
This commit is contained in:
parent
63978b76df
commit
8e4cbf8b76
1 changed files with 1 additions and 1 deletions
|
@ -1648,7 +1648,7 @@ static boolean P_ActivateLinedefExecutorsInSector(line_t *triggerline, mobj_t *a
|
|||
size_t linecnt = ctlsector->linecount;
|
||||
size_t i;
|
||||
|
||||
if (triggerline->flags & ML_EFFECT5) // disregard order for efficiency
|
||||
if (!udmf && triggerline->flags & ML_EFFECT5) // disregard order for efficiency
|
||||
{
|
||||
for (i = 0; i < linecnt; i++)
|
||||
P_ActivateLinedefExecutor(ctlsector->lines[i], actor, caller);
|
||||
|
|
Loading…
Reference in a new issue