diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java index 5a907d6aa7..2983157249 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java @@ -159,8 +159,8 @@ public void loadConfiguration(ConfigurationSection config) { @Override public int getMinComponentHeight() { - return COMPONENT_BELOW_BEDROCK && PLOT_BEDROCK && getMinGenHeight() >= getMinBuildHeight() - ? getMinGenHeight() + 1 + return COMPONENT_BELOW_BEDROCK && getMinGenHeight() >= getMinBuildHeight() + ? getMinGenHeight() + (PLOT_BEDROCK ? 1 : 0) : getMinBuildHeight(); }