1
0
Fork 0

DistortedHeightmap: Now generates gravel in deep ocean.

This commit is contained in:
STRWarrior 2014-07-28 12:30:16 +02:00
parent fd4ee20b2a
commit 5b69b2ce4f
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ void cDistortedHeightmap::FillColumnPattern(cChunkDesc & a_ChunkDesc, int a_RelX
}
// Select the ocean-floor pattern to use:
a_Pattern = ChooseOceanFloorPattern(a_RelX, a_RelZ);
a_Pattern = a_ChunkDesc.GetBiome(a_RelX, a_RelZ) == biDeepOcean ? patGravel.Get() : ChooseOceanFloorPattern(a_RelX, a_RelZ);
HasHadWater = true;
} // for y
a_ChunkDesc.SetBlockType(a_RelX, 0, a_RelZ, E_BLOCK_BEDROCK);