mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 14:41:55 +00:00
- fixed incorrect argument in FAFcansee call.
This commit is contained in:
parent
3499049976
commit
27eae52228
1 changed files with 1 additions and 1 deletions
|
@ -8602,7 +8602,7 @@ int DoMineRangeTest(DSWActor* actor, int range)
|
|||
if (dist > range)
|
||||
continue;
|
||||
|
||||
if (FAFcansee(itActor, ActorUpperZ(itActor), actor, actor->spr.pos.Z))
|
||||
if (FAFcansee(itActor, ActorUpperZ(actor), actor, actor->spr.pos.Z))
|
||||
continue;
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue