CleanSuperFlat block setting changed to not use physics

https://github.com/BentoBoxWorld/SkyGrid/issues/22
This commit is contained in:
tastybento 2019-07-28 13:48:37 -07:00
parent 799decfcac
commit d746eb2a05

View File

@ -88,7 +88,7 @@ public class CleanSuperFlatListener extends FlagListener {
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);
}
}
}