Skip to content

Commit c0c2970

Browse files
committed
Fix for nether Biome in end world
#54
1 parent 5e610f5 commit c0c2970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/world/bentobox/caveblock/generators/ChunkGeneratorWorld.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private void populateTheEndChunk(World world, ChunkData chunkData, BiomeGrid bio
124124
{
125125
for (int z = 0; z < 16; z += 4)
126126
{
127-
biomeGrid.setBiome(x, y, z, this.settings.getDefaultNetherBiome());
127+
biomeGrid.setBiome(x, y, z, this.settings.getDefaultTheEndBiome());
128128
}
129129
}
130130
}

0 commit comments

Comments
 (0)