From 1d2689f2224e52aa983fd11ae7ec7dbbb5ae72fb Mon Sep 17 00:00:00 2001 From: Spencer Date: Sat, 25 Nov 2017 16:20:47 -0500 Subject: [PATCH] See if shifting -0.5X made a difference --- .../src/nautilus/game/arcade/game/games/build/BuildData.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/build/BuildData.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/build/BuildData.java index 37cc08a02..42b7862bd 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/build/BuildData.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/build/BuildData.java @@ -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.add(-0.5, 0, 0); + CornerBottomLeft = bottomLeft; CornerTopRight = topRight; }