diff --git a/OpenRa.Game/Traits/AutoHeal.cs b/OpenRa.Game/Traits/AutoHeal.cs index 42a8674a50..61018ed3cd 100644 --- a/OpenRa.Game/Traits/AutoHeal.cs +++ b/OpenRa.Game/Traits/AutoHeal.cs @@ -13,7 +13,7 @@ namespace OpenRa.Game.Traits if (target != null) attack.ResolveOrder(self, new Order("Attack", self, target, int2.Zero, null)); else - if (!(self.GetCurrentActivity() is Move)) + if (self.GetCurrentActivity() is Attack) self.CancelActivity(); }