diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridPlotManager.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridPlotManager.java index 0155f9cec..9f77e56f7 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridPlotManager.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/HybridPlotManager.java @@ -81,6 +81,7 @@ public class HybridPlotManager extends ClassicPlotManager { } else { minY = 1; } + BaseBlock airBlock = BlockTypes.AIR.getDefaultState().toBaseBlock(); for (int x = pos1.getX(); x <= pos2.getX(); x++) { short absX = (short) ((x - hpw.ROAD_OFFSET_X) % size); if (absX < 0) { @@ -98,7 +99,7 @@ public class HybridPlotManager extends ClassicPlotManager { queue.setBlock(x, minY + y, z, blocks[y]); } else { // This is necessary, otherwise any blocks not specified in the schematic will remain after a clear - queue.setBlock(x, minY + y, z, BlockTypes.AIR.getDefaultState().toBaseBlock()); + queue.setBlock(x, minY + y, z, airBlock); } } }