mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-04 18:46:24 +02:00
Adjust for if plot bedrock is enabled
This commit is contained in:
parent
d85e3f443f
commit
8cd92c8ffa
@ -159,8 +159,8 @@ public abstract class ClassicPlotWorld extends SquarePlotWorld {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getMinComponentHeight() {
|
public int getMinComponentHeight() {
|
||||||
return COMPONENT_BELOW_BEDROCK && PLOT_BEDROCK && getMinGenHeight() >= getMinBuildHeight()
|
return COMPONENT_BELOW_BEDROCK && getMinGenHeight() >= getMinBuildHeight()
|
||||||
? getMinGenHeight() + 1
|
? getMinGenHeight() + (PLOT_BEDROCK ? 1 : 0)
|
||||||
: getMinBuildHeight();
|
: getMinBuildHeight();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user