@@ -137,7 +137,9 @@ public abstract class ChunkGenerator {
|
||||
* @param z The Z-coordinate of the chunk
|
||||
* @param biomes Proposed biome values for chunk - can be updated by generator
|
||||
* @return short[][] containing the types for each block created by this generator
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
public short[][] generateExtBlockSections(World world, Random random, int x, int z, BiomeGrid biomes) {
|
||||
return null; // Default - returns null, which drives call to generateBlockSections()
|
||||
}
|
||||
@@ -186,7 +188,9 @@ public abstract class ChunkGenerator {
|
||||
* @param z The Z-coordinate of the chunk
|
||||
* @param biomes Proposed biome values for chunk - can be updated by generator
|
||||
* @return short[][] containing the types for each block created by this generator
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
public byte[][] generateBlockSections(World world, Random random, int x, int z, BiomeGrid biomes) {
|
||||
return null; // Default - returns null, which drives call to generate()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user