diff --git a/OpenRA.Mods.RA/Widgets/Logic/ObserverShroudSelectorLogic.cs b/OpenRA.Mods.RA/Widgets/Logic/ObserverShroudSelectorLogic.cs index 21f04be254..ebe69cc28b 100644 --- a/OpenRA.Mods.RA/Widgets/Logic/ObserverShroudSelectorLogic.cs +++ b/OpenRA.Mods.RA/Widgets/Logic/ObserverShroudSelectorLogic.cs @@ -39,7 +39,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic Color = p.Color.RGB; Race = p.Country.Race; IsSelected = () => p.World.RenderPlayer == p; - OnClick = () => { p.World.RenderPlayer = p; logic.selected = this; }; + OnClick = () => { p.World.RenderPlayer = p; logic.selected = this; p.World.Selection.Clear(); }; } public CameraOption(ObserverShroudSelectorLogic logic, World w, string label, Player p)