Abort activities when we don't know how close to move to a target.
This commit is contained in:
committed by
Oliver Brakmann
parent
2d4bad66ae
commit
49621bebd0
@@ -109,7 +109,7 @@ namespace OpenRA.Mods.Common.Activities
|
||||
if (useLastVisibleTarget)
|
||||
{
|
||||
// We've reached the assumed position but it is not there or we can't move any further - give up
|
||||
if (checkTarget.IsInRange(pos, lastVisibleMaximumRange) || move == null)
|
||||
if (checkTarget.IsInRange(pos, lastVisibleMaximumRange) || move == null || lastVisibleMaximumRange == WDist.Zero)
|
||||
return NextActivity;
|
||||
|
||||
// Move towards the last known position
|
||||
|
||||
Reference in New Issue
Block a user