diff --git a/OpenRA.Mods.Cnc/Widgets/Logic/CncConquestObjectivesLogic.cs b/OpenRA.Mods.Cnc/Widgets/Logic/CncConquestObjectivesLogic.cs index 3b49c9ab36..ac5b6bbca6 100644 --- a/OpenRA.Mods.Cnc/Widgets/Logic/CncConquestObjectivesLogic.cs +++ b/OpenRA.Mods.Cnc/Widgets/Logic/CncConquestObjectivesLogic.cs @@ -63,7 +63,7 @@ namespace OpenRA.Mods.Cnc.Widgets.Logic item.GetWidget("FACTION").GetText = () => pp.Country.Name; var team = item.GetWidget("TEAM"); - team.GetText = () => c.Team.ToString(); + team.GetText = () => (c.Team == 0) ? "-" : c.Team.ToString(); scrollpanel.AddChild(item); item.GetWidget("KILLS").GetText = () => pp.Kills.ToString();