Pass contextual information to TargetOverridesSelection.

This commit is contained in:
Paul Chote
2019-10-29 19:29:43 +00:00
committed by abcdefg30
parent 3d6621f7ff
commit 0e4cb53ada
14 changed files with 14 additions and 14 deletions

View File

@@ -120,7 +120,7 @@ namespace OpenRA.Orders
foreach (var a in world.Selection.Actors)
{
var o = OrderForUnit(a, target, actorsAt, cell, mi);
if (o != null && o.Order.TargetOverridesSelection(modifiers))
if (o != null && o.Order.TargetOverridesSelection(a, target, actorsAt, cell, modifiers))
return true;
}