diff --git a/OpenRA.Mods.RA/SupportPowers/GpsPower.cs b/OpenRA.Mods.RA/SupportPowers/GpsPower.cs index 6cbbe15f07..9bfb8b4eb6 100755 --- a/OpenRA.Mods.RA/SupportPowers/GpsPower.cs +++ b/OpenRA.Mods.RA/SupportPowers/GpsPower.cs @@ -59,10 +59,9 @@ namespace OpenRA.Mods.RA void RefreshGps(Actor self) { - if (self.Owner == self.World.LocalPlayer) - self.World.LocalShroud.Disabled = self.World.Queries.WithTrait() - .Any(p => p.Actor.Owner.Stances[self.Owner] == Stance.Ally && - p.Trait.Granted); + self.World.LocalShroud.Disabled = self.World.Queries.WithTrait() + .Any(p => p.Actor.Owner.Stances[self.Owner] == Stance.Ally && + p.Trait.Granted); } } }