From e28ed916aa58874b5337bbcfb07f1983effc1660 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Fri, 4 Feb 2011 11:14:44 +1300 Subject: [PATCH] Improve spacing --- OpenRA.Mods.RA/Move/Mobile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Move/Mobile.cs b/OpenRA.Mods.RA/Move/Mobile.cs index 352bed28de..fb802d450f 100755 --- a/OpenRA.Mods.RA/Move/Mobile.cs +++ b/OpenRA.Mods.RA/Move/Mobile.cs @@ -78,10 +78,10 @@ namespace OpenRA.Mods.RA.Move public readonly Dictionary SubCellOffsets = new Dictionary() { - {SubCell.TopLeft, new int2(-6,-6)}, + {SubCell.TopLeft, new int2(-7,-6)}, {SubCell.TopRight, new int2(6,-6)}, {SubCell.Center, new int2(0,0)}, - {SubCell.BottomLeft, new int2(-6,6)}, + {SubCell.BottomLeft, new int2(-7,6)}, {SubCell.BottomRight, new int2(6,6)}, {SubCell.FullCell, new int2(0,0)}, };