From 1147a572da0b3569d8243bc7db38306deb773718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 18 May 2014 09:49:29 +0200 Subject: [PATCH] fix closing slots not removing bots properly --- OpenRA.Mods.RA/ServerTraits/LobbyCommands.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenRA.Mods.RA/ServerTraits/LobbyCommands.cs b/OpenRA.Mods.RA/ServerTraits/LobbyCommands.cs index eaef9dc6ad..0451222131 100644 --- a/OpenRA.Mods.RA/ServerTraits/LobbyCommands.cs +++ b/OpenRA.Mods.RA/ServerTraits/LobbyCommands.cs @@ -176,8 +176,10 @@ namespace OpenRA.Mods.RA.Server if (occupant.Bot != null) { server.LobbyInfo.Clients.Remove(occupant); + server.SyncLobbyClients(); var ping = server.LobbyInfo.PingFromClient(occupant); server.LobbyInfo.ClientPings.Remove(ping); + server.SyncClientPing(); } else {