diff --git a/OpenRA.Mods.RA/Thief.cs b/OpenRA.Mods.RA/Thief.cs index 6e74749694..18dcc4aa7f 100644 --- a/OpenRA.Mods.RA/Thief.cs +++ b/OpenRA.Mods.RA/Thief.cs @@ -32,6 +32,7 @@ namespace OpenRA.Mods.RA { if (mi.Button != MouseButton.Right) return null; if (underCursor == null) return null; + if (self.Owner.Stances[underCursor.Owner] != Stance.Enemy) return null; if (!underCursor.traits.Contains()) return null; return new Order("Steal", self, underCursor);