We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d85e3f4 commit 8cd92c8Copy full SHA for 8cd92c8
Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java
@@ -159,8 +159,8 @@ public void loadConfiguration(ConfigurationSection config) {
159
160
@Override
161
public int getMinComponentHeight() {
162
- return COMPONENT_BELOW_BEDROCK && PLOT_BEDROCK && getMinGenHeight() >= getMinBuildHeight()
163
- ? getMinGenHeight() + 1
+ return COMPONENT_BELOW_BEDROCK && getMinGenHeight() >= getMinBuildHeight()
+ ? getMinGenHeight() + (PLOT_BEDROCK ? 1 : 0)
164
: getMinBuildHeight();
165
}
166
0 commit comments