Fix height vs. max build height mixup

This commit is contained in:
ZacSharp
2025-05-10 15:51:20 +02:00
parent 40e83423bc
commit f86f0ab6cd

View File

@@ -56,7 +56,7 @@ public final class BlockStateInterfaceAccessWrapper implements BlockGetter {
@Override
public int getHeight() {
return bsi.world.getMaxBuildHeight();
return bsi.world.getHeight();
}
@Override