diff --git a/OpenRA.Mods.RA/ProductionBar.cs b/OpenRA.Mods.RA/ProductionBar.cs index 86c693dce6..10f1ae0dd0 100644 --- a/OpenRA.Mods.RA/ProductionBar.cs +++ b/OpenRA.Mods.RA/ProductionBar.cs @@ -26,6 +26,10 @@ namespace OpenRA.Mods.RA public float GetValue() { + // only people we like should see our production status. + if (self.World.LocalPlayer != null && self.Owner.Stances[self.World.LocalPlayer] != Stance.Ally) + return 0; + var queue = self.TraitsImplementing().FirstOrDefault(q => q.CurrentItem() != null); if (queue == null) {