mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-11 05:01:09 +00:00
- fixed: TRF_ALLACTORS did not consider actors without any flag being set.
This commit is contained in:
parent
ea0da8533c
commit
2828dbe095
1 changed files with 3 additions and 3 deletions
|
@ -853,7 +853,7 @@ bool FTraceInfo::TraceTraverse (int ptflags)
|
|||
}
|
||||
if (!LineCheck(in, dist, hit, false)) break;
|
||||
}
|
||||
else if ((in->d.thing->flags & ActorMask) && in->d.thing != IgnoreThis)
|
||||
else if (((in->d.thing->flags & ActorMask) || ActorMask == 0xffffffff) && in->d.thing != IgnoreThis)
|
||||
{
|
||||
if (!ThingCheck(in, dist, hit)) break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue