diff --git a/OpenRA.Mods.RA/BelowUnits.cs b/OpenRA.Mods.RA/BelowUnits.cs index 4afc0f6b4f..6f3698cb5c 100644 --- a/OpenRA.Mods.RA/BelowUnits.cs +++ b/OpenRA.Mods.RA/BelowUnits.cs @@ -20,7 +20,7 @@ namespace OpenRA.Mods.RA { public IEnumerable ModifyRender(Actor self, IEnumerable r) { - return r.Select(a => a.WithZOffset(-1)); + return r.Select(a => a.WithZOffset((int) -a.Sprite.size.Y)); } } }