subtract half a block from BL corner

This commit is contained in:
Spencer 2017-11-25 16:10:09 -05:00 committed by Alexander Meech
parent 5c29d75246
commit 1c6e7df66e
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public class BuildData
bottomLeft.setZ(Math.min(CornerA.getZ(), CornerB.getZ()));
topRight.setZ(Math.max(CornerA.getZ(), CornerB.getZ()));
CornerBottomLeft = bottomLeft;
CornerBottomLeft = bottomLeft.add(-0.5, 0, 0);
CornerTopRight = topRight;
}