Skip to content

Commit

Permalink
CleanSuperFlat block setting changed to not use physics
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Jul 28, 2019
1 parent 799decf commit d746eb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private void cleanChunk(ChunkLoadEvent e, World world, ChunkGenerator cg, MyBiom
for (int x = 0; x < 16; x++) {
for (int z = 0; z < 16; z++) {
for (int y = 0; y < world.getMaxHeight(); y++) {
e.getChunk().getBlock(x, y, z).setBlockData(cd.getBlockData(x, y, z));
e.getChunk().getBlock(x, y, z).setBlockData(cd.getBlockData(x, y, z), false);
}
}
}
Expand Down

0 comments on commit d746eb2

Please sign in to comment.