Fix regen

This commit is contained in:
cyberpwn 2022-01-13 06:52:37 -05:00
parent 5594ad1ce3
commit 59150a655a

View File

@ -170,7 +170,8 @@ public class BukkitChunkGenerator extends ChunkGenerator implements PlatformChun
continue; continue;
} }
c.getBlock(xx, yy + (finalI << 4), zz).setBlockData(tc.getBlockData(xx, yy + (finalI << 4), zz), false); c.getBlock(xx, yy + (finalI << 4)+ world.getMinHeight(), zz)
.setBlockData(tc.getBlockData(xx, yy + (finalI << 4)+ world.getMinHeight(), zz), false);
} }
} }
} }