diff --git a/OpenRA.Mods.Common/Traits/EmitInfantryOnSell.cs b/OpenRA.Mods.Common/Traits/EmitInfantryOnSell.cs index 60ab45657a..6090b6f151 100644 --- a/OpenRA.Mods.Common/Traits/EmitInfantryOnSell.cs +++ b/OpenRA.Mods.Common/Traits/EmitInfantryOnSell.cs @@ -57,7 +57,7 @@ namespace OpenRA.Mods.Common.Traits var cost = csv != null ? csv.Value : (valued != null ? valued.Cost : 0); var health = self.TraitOrDefault(); - var dudesValue = info.ValuePercent * cost; + var dudesValue = info.ValuePercent * cost / 100; if (health != null) { if (100 * health.HP >= info.MinHpPercent * health.MaxHP)