Merge pull request #8167 from deniz1a/fix-sat-icon

Prevents satellite icons from being drawn over frozen actors.
This commit is contained in:
Oliver Brakmann
2015-05-29 13:56:37 +02:00
3 changed files with 10 additions and 7 deletions

View File

@@ -81,7 +81,10 @@ namespace OpenRA.Mods.RA.Effects
if (f == null)
return false;
return f.Visible && !f.HasRenderables;
if (f.HasRenderables || f.NeedRenderables)
return false;
return f.Visible;
}
public void Tick(World world)