diff --git a/OpenRA.Game/Traits/SelectionDecorations.cs b/OpenRA.Game/Traits/SelectionDecorations.cs index 8cbaa49cd6..4f6dae611d 100644 --- a/OpenRA.Game/Traits/SelectionDecorations.cs +++ b/OpenRA.Game/Traits/SelectionDecorations.cs @@ -38,7 +38,7 @@ namespace OpenRA.Traits public IEnumerable RenderAfterWorld(WorldRenderer wr) { - if (!self.Owner.IsAlliedWith(self.World.RenderPlayer) && self.World.FogObscures(self)) + if (!self.Owner.IsAlliedWith(self.World.RenderPlayer) || self.World.FogObscures(self)) yield break; var b = self.Bounds; @@ -136,4 +136,4 @@ namespace OpenRA.Traits } } } -} \ No newline at end of file +}