From c53cd1ec9130763d99a16ae9887147cec52fc792 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Thu, 20 Dec 2018 23:34:55 +0000 Subject: [PATCH] oops --- .../plotsquared/plot/generator/HybridUtils.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridUtils.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridUtils.java index e8acee573..3ac302d8d 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridUtils.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridUtils.java @@ -356,7 +356,7 @@ public abstract class HybridUtils { int minY = Math.min(plotWorld.PLOT_HEIGHT, plotWorld.ROAD_HEIGHT); if (blocks != null) { for (int y = 0; y < blocks.length; y++) { - if ((blocks[y] != null) { + if (blocks[y] != null) { PlotBlock block = PlotBlock.get(blocks[y]); queue.setBlock(x + X + plotWorld.ROAD_OFFSET_X, minY + y, z + Z + plotWorld.ROAD_OFFSET_Z, block); @@ -365,9 +365,11 @@ public abstract class HybridUtils { } } } - } queue.enqueue(); + } + queue.enqueue(); return true; } - } return false; + } + return false; } }