diff --git a/OpenRA.Mods.Common/Traits/Attack/AttackFollow.cs b/OpenRA.Mods.Common/Traits/Attack/AttackFollow.cs index cce8a33933..7fa473960b 100644 --- a/OpenRA.Mods.Common/Traits/Attack/AttackFollow.cs +++ b/OpenRA.Mods.Common/Traits/Attack/AttackFollow.cs @@ -27,14 +27,6 @@ namespace OpenRA.Mods.Common.Traits public AttackFollow(Actor self, AttackFollowInfo info) : base(self, info) { } - protected override bool CanAttack(Actor self, Target target) - { - if (!target.IsValidFor(self)) - return false; - - return base.CanAttack(self, target); - } - public virtual void Tick(Actor self) { DoAttack(self, Target);