mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-01 05:20:43 +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)
|
if (dist > range)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (FAFcansee(itActor, ActorUpperZ(itActor), actor, actor->spr.pos.Z))
|
if (FAFcansee(itActor, ActorUpperZ(actor), actor, actor->spr.pos.Z))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue