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
@@ -95,7 +95,7 @@ namespace OpenRA.Mods.Cnc.Activities
|
||||
|
||||
if (!checkTarget.IsInRange(pos, lastVisibleMaxRange) || checkTarget.IsInRange(pos, lastVisibleMinRange))
|
||||
{
|
||||
if (!allowMovement)
|
||||
if (!allowMovement || lastVisibleMaxRange == WDist.Zero || lastVisibleMaxRange < lastVisibleMinRange)
|
||||
return NextActivity;
|
||||
|
||||
QueueChild(mobile.MoveWithinRange(target, lastVisibleMinRange, lastVisibleMaxRange, checkTarget.CenterPosition, Color.Red));
|
||||
|
||||
Reference in New Issue
Block a user