diff --git a/OpenRA.Mods.RA/Player/BaseAttackNotifier.cs b/OpenRA.Mods.RA/Player/BaseAttackNotifier.cs index 8a9b02d40f..273eeec2c4 100644 --- a/OpenRA.Mods.RA/Player/BaseAttackNotifier.cs +++ b/OpenRA.Mods.RA/Player/BaseAttackNotifier.cs @@ -49,6 +49,9 @@ namespace OpenRA.Mods.RA if (e.Attacker.Owner == self.Owner) return; + if (e.Attacker == self.World.WorldActor) + return; + if (e.Attacker.Owner.IsAlliedWith(self.Owner) && e.Damage <= 0) return;