9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 18:19:14 +00:00

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;
}
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);
}
}
}