fix: typo (MaxBuildHeight -> MinBuildHeight) (#3572)

This commit is contained in:
Pierre Maurice Schwang
2022-04-15 08:59:01 +02:00
committed by GitHub
parent 8454c29c91
commit 6a54dc7eff

View File

@ -389,7 +389,7 @@ public class ClassicPlotManager extends SquarePlotManager {
if (!plot.isMerged(Direction.NORTH)) {
int z = bot.getZ();
for (int x = bot.getX(); x < top.getX(); x++) {
for (int y = classicPlotWorld.getMaxBuildHeight(); y <= classicPlotWorld.WALL_HEIGHT; y++) {
for (int y = classicPlotWorld.getMinBuildHeight(); y <= classicPlotWorld.WALL_HEIGHT; y++) {
queue.setBlock(x, y, z, blocks);
}
}