mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 14:41:55 +00:00
- SW: fixed negated FAFcansee call in explosion code.
This commit is contained in:
parent
27eae52228
commit
1294f10cd7
1 changed files with 1 additions and 1 deletions
|
@ -7280,7 +7280,7 @@ int DoExpDamageTest(DSWActor* actor)
|
|||
if ((unsigned)dist > actor->user.Radius)
|
||||
continue;
|
||||
|
||||
if (FAFcansee(itActor, ActorZOfMiddle(itActor), actor, actor->spr.pos.Z))
|
||||
if (!FAFcansee(itActor, ActorZOfMiddle(itActor), actor, actor->spr.pos.Z))
|
||||
continue;
|
||||
|
||||
if ((itActor->spr.extra & SPRX_BREAKABLE))
|
||||
|
|
Loading…
Reference in a new issue