From 40514184d827dea1ba055a68d2a50f785b8f1bfb Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Sun, 21 Feb 2016 16:30:53 +0100 Subject: [PATCH] Convert CRLF to LF line endings in LobbyCommands.cs --- OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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();