Merge branch 'v6' into v7

This commit is contained in:
Alexander Brandes
2022-05-15 15:41:17 +02:00
6 changed files with 218 additions and 37 deletions

View File

@ -278,7 +278,7 @@ public class BukkitRegionManager extends RegionManager {
int minY = value.getMin().getY();
for (int yIndex = 0; yIndex < ids.length; yIndex++) {
int y = yIndex + minY;
BaseBlock id = ids[y];
BaseBlock id = ids[yIndex];
if (id != null) {
value.setBlock(x1, y, z1, id);
} else {