From c645c4a6cb8e1f14a9165b1e5aa4fe583973b575 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Sat, 23 Sep 2017 18:20:27 +1000 Subject: [PATCH] * --- .../intellectualcrafters/plot/generator/HybridPlotWorld.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/intellectualcrafters/plot/generator/HybridPlotWorld.java b/Core/src/main/java/com/intellectualcrafters/plot/generator/HybridPlotWorld.java index 1c08939e7..c0ff84a78 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/generator/HybridPlotWorld.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/generator/HybridPlotWorld.java @@ -201,13 +201,13 @@ public class HybridPlotWorld extends ClassicPlotWorld { if (l3 < this.PLOT_WIDTH) { centerShiftZ = (this.PLOT_WIDTH - l3) / 2; } else { - centerShiftZ = (PLOT_WIDTH + ROAD_WIDTH - l3) / 2; + centerShiftZ = (PLOT_WIDTH - l3) / 2; } int centerShiftX = 0; if (w3 < this.PLOT_WIDTH) { centerShiftX = (this.PLOT_WIDTH - w3) / 2; } else { - centerShiftX = (PLOT_WIDTH + ROAD_WIDTH - w3) / 2; + centerShiftX = (PLOT_WIDTH - w3) / 2; } int startY = minY - PLOT_HEIGHT;