Fixed switch break bug.

This commit is contained in:
Tastybento 2018-02-06 21:30:35 -08:00
parent bb404380f5
commit ed622dc9c0

View File

@ -118,6 +118,7 @@ public class ChunkGeneratorWorld extends ChunkGenerator {
for (int i = 0; i < random.nextInt(10); i++) {
result.setBlock(x, (maxHeight - 8 - i), z, Material.GLOWSTONE);
}
break;
case 3:
result.setBlock(x, (maxHeight - 8), z, Material.GLOWSTONE);
if (x > 3 && z > 3) {