Fix for nether Biome in end world

https://github.com/BentoBoxWorld/CaveBlock/issues/54
This commit is contained in:
tastybento 2020-12-22 09:03:21 -08:00
parent 5e610f5fd8
commit c0c2970168

View File

@ -124,7 +124,7 @@ public class ChunkGeneratorWorld extends ChunkGenerator
{
for (int z = 0; z < 16; z += 4)
{
biomeGrid.setBiome(x, y, z, this.settings.getDefaultNetherBiome());
biomeGrid.setBiome(x, y, z, this.settings.getDefaultTheEndBiome());
}
}
}