diff --git a/OpenRA.Game/Traits/Health.cs b/OpenRA.Game/Traits/Health.cs old mode 100644 new mode 100755 index 1954067d1c..f40282cb8b --- a/OpenRA.Game/Traits/Health.cs +++ b/OpenRA.Game/Traits/Health.cs @@ -163,7 +163,9 @@ namespace OpenRA.Traits { var health = self.TraitOrDefault(); if (health == null) return; - health.InflictDamage(self, attacker, health.HP, null); + + /* hack. Fix for proper */ + health.InflictDamage(self, attacker, int.MaxValue, null); } } }