Make the non-support of frozen actor targeting in EnterOrderTargeter explicit.

This commit is contained in:
Paul Chote
2013-08-11 20:17:46 +12:00
parent a88b5e98d7
commit 587fac377e
7 changed files with 14 additions and 12 deletions

View File

@@ -38,8 +38,8 @@ namespace OpenRA.Mods.RA
{
get
{
yield return new EnterOrderTargeter<Building>( "RepairNear", 5, false, true,
target => CanRepairAt( target ), _ => ShouldRepair() );
yield return new EnterAlliedActorTargeter<Building>("RepairNear", 5,
target => CanRepairAt(target), _ => ShouldRepair());
}
}