diff --git a/OpenRA.Mods.RA/Widgets/Logic/ObserverStatsLogic.cs b/OpenRA.Mods.RA/Widgets/Logic/ObserverStatsLogic.cs index 90733e0b57..b70d656afe 100644 --- a/OpenRA.Mods.RA/Widgets/Logic/ObserverStatsLogic.cs +++ b/OpenRA.Mods.RA/Widgets/Logic/ObserverStatsLogic.cs @@ -262,7 +262,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic var stats = player.PlayerActor.TraitOrDefault(); if (stats == null) return template; template.Get("KILLS").GetText = () => (stats.UnitsKilled + stats.BuildingsKilled).ToString(); - template.Get("DEATHS").GetText = () => (stats.UnitsDead + stats.UnitsDead).ToString(); + template.Get("DEATHS").GetText = () => (stats.UnitsDead + stats.BuildingsDead).ToString(); template.Get("ACTIONS_MIN").GetText = () => AverageOrdersPerMinute(stats.OrderCount); return template;