diff --git a/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs b/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs index 86f9ed434b..29e1ea7080 100644 --- a/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs +++ b/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs @@ -119,11 +119,11 @@ namespace OpenRA.Mods.Common.Server return true; } - if (server.Settings.DisableSinglePlayer && - server.LobbyInfo.Clients.Where(c => c.Bot == null && c.Slot != null).Count() == 1) - { - server.SendOrderTo(conn, "Message", "Unable to start the game until another player joins."); - return true; + if (server.Settings.DisableSinglePlayer && + server.LobbyInfo.Clients.Where(c => c.Bot == null && c.Slot != null).Count() == 1) + { + server.SendOrderTo(conn, "Message", "Unable to start the game until another player joins."); + return true; } server.StartGame();