diff --git a/OpenRA.Mods.Common/Traits/Player/HarvesterAttackNotifier.cs b/OpenRA.Mods.Common/Traits/Player/HarvesterAttackNotifier.cs index b067d96563..28af1e6fce 100644 --- a/OpenRA.Mods.Common/Traits/Player/HarvesterAttackNotifier.cs +++ b/OpenRA.Mods.Common/Traits/Player/HarvesterAttackNotifier.cs @@ -57,6 +57,10 @@ namespace OpenRA.Mods.Common.Traits if (e.Attacker != null && e.Attacker.Owner == self.Owner) return; + // Don't track healing + if (e.Damage.Value < 0) + return; + // Only track last hit against our harvesters if (!self.Info.HasTraitInfo()) return;