Don't show a move flash effect when PBOG nudges a unit.

This commit is contained in:
Paul Chote
2017-02-05 18:40:22 +00:00
parent b018c3d837
commit 9ab59ff614

View File

@@ -245,7 +245,8 @@ namespace OpenRA.Mods.Common.Orders
yield return new Order("Move", blocker.Actor, false)
{
TargetLocation = blocker.Actor.ClosestCell(availableCells)
TargetLocation = blocker.Actor.ClosestCell(availableCells),
SuppressVisualFeedback = true
};
}
}