fix 1.8 generation
This commit is contained in:
parent
c84db28f9c
commit
de83b7b26e
1 changed files with 2 additions and 6 deletions
|
@ -75,15 +75,11 @@ public class VoidGenerator extends ChunkGenerator {
|
|||
|
||||
// 1.8
|
||||
public byte[] generate(World world, Random random, int x, int z) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public short[][] generateExtBlockSections(World world, Random random, int x, int z, ChunkGenerator.BiomeGrid biomes) {
|
||||
return null;
|
||||
return new byte[world.getMaxHeight() / 16];
|
||||
}
|
||||
|
||||
public byte[][] generateBlockSections(World world, Random random, int x, int z, ChunkGenerator.BiomeGrid biomes) {
|
||||
return null;
|
||||
return new byte[world.getMaxHeight() / 16][];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue