Merge pull request #10420 from Mailaender/revert-fixAttack

Revert "Don't attack actors that you can't see"
This commit is contained in:
Paul Chote
2016-01-23 12:45:55 +00:00

View File

@@ -86,9 +86,6 @@ namespace OpenRA.Mods.Common.Traits
if (Armaments.All(a => a.IsReloading))
return false;
if (target.Type == TargetType.Actor && !self.Owner.CanTargetActor(target.Actor))
return false;
return true;
}