From 6eabd080b88b7ce9e7e52554d32c79fcf1401b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 22 Jun 2014 13:30:09 +0200 Subject: [PATCH] StyleCop --- OpenRA.Game/Player.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)