From 7838896c810453ca669b4475eb24d2a5446b06a0 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 20 Jun 2011 20:03:11 +1200 Subject: [PATCH] Display bot spawns to everyone, not just the host. --- OpenRA.Mods.Cnc/Widgets/Logic/CncLobbyLogic.cs | 3 +++ 1 file changed, 3 insertions(+) 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