diff --git a/OpenRA.Game/Player.cs b/OpenRA.Game/Player.cs index a6bba831d9..d68ee59fc8 100644 --- a/OpenRA.Game/Player.cs +++ b/OpenRA.Game/Player.cs @@ -48,7 +48,7 @@ namespace OpenRA static CountryInfo ChooseCountry(World world, string name) { var selectableCountries = world.Map.Rules.Actors["world"].Traits - .WithInterface().Where( c => c.Selectable ) + .WithInterface().Where(c => c.Selectable) .ToArray(); return selectableCountries.FirstOrDefault(c => c.Race == name)