This commit is contained in:
Robinson Gallego 2020-02-10 15:53:31 -05:00
parent 68ac01f1d2
commit 910719b277

View file

@ -44,7 +44,7 @@ import java.util.Random;
try {
ChunkGenerator.BiomeGrid grid = new ChunkGenerator.BiomeGrid() {
@Override public void setBiome(@Range(from = 0, to = 15) int x,
@Range(from = 0, to = 15) int z, Biome biome) {
@Range(from = 0, to = 15) int z, Biome biome) { //TODO:breaking
result.setBiome(x, z, BukkitAdapter.adapt(biome));
}