diff --git a/OpenRA.Mods.Cnc/Widgets/Logic/CncLobbyLogic.cs b/OpenRA.Mods.Cnc/Widgets/Logic/CncLobbyLogic.cs index 7b9769d0dc..0c76835497 100644 --- a/OpenRA.Mods.Cnc/Widgets/Logic/CncLobbyLogic.cs +++ b/OpenRA.Mods.Cnc/Widgets/Logic/CncLobbyLogic.cs @@ -537,6 +537,9 @@ namespace OpenRA.Mods.Cnc.Widgets.Logic var team = template.GetWidget("TEAM"); team.GetText = () => (client.Team == 0) ? "-" : client.Team.ToString(); + var spawn = template.GetWidget("SPAWN"); + spawn.GetText = () => (client.SpawnPoint == 0) ? "-" : client.SpawnPoint.ToString(); + if (client.Index == orderManager.LocalClient.Index) { // "Ready" local player -> status still needs to be editable