diff --git a/OpenRA.Mods.RA/Effects/GpsDot.cs b/OpenRA.Mods.RA/Effects/GpsDot.cs index e14eda5b8f..46419d3be1 100644 --- a/OpenRA.Mods.RA/Effects/GpsDot.cs +++ b/OpenRA.Mods.RA/Effects/GpsDot.cs @@ -72,7 +72,8 @@ namespace OpenRA.Mods.RA.Effects public IEnumerable Render() { if (show && !self.Destroyed) - yield return Traits.Util.Centered(self, anim.Image, self.CenterLocation.ToFloat2()); + yield return Traits.Util.Centered(self, anim.Image, self.CenterLocation.ToFloat2()) + .WithScale(1.5f); } } } diff --git a/mods/ra/bits/gpsdot.shp b/mods/ra/bits/gpsdot.shp index 21444bbc19..cc42692f55 100644 Binary files a/mods/ra/bits/gpsdot.shp and b/mods/ra/bits/gpsdot.shp differ