Merge pull request #8589 from obrakmann/fix8543_range-circles-in-replays

Make range circles visible to observers
This commit is contained in:
Matthias Mailänder
2015-06-29 23:10:28 +02:00
6 changed files with 10 additions and 10 deletions

View File

@@ -140,7 +140,7 @@ namespace OpenRA
public bool IsAlliedWith(Player p)
{
// Observers are considered as allies
return p == null || Stances[p] == Stance.Ally;
return p == null || Stances[p] == Stance.Ally || p.Spectating;
}
public void SetStance(Player target, Stance s)