Fixes #2567: Use heightmap for very low sea levels.

This commit is contained in:
yueh 2016-11-04 16:13:27 +01:00
parent c1483d87c7
commit 84bc00fa20
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public final class QuartzWorldGen implements IWorldGenerator
{
final int x = ( chunkX << 4 ) + 8;
final int z = ( chunkZ << 4 ) + 8;
seaLevel = (int) w.getHorizon();
seaLevel = w.getHeightmapHeight( x, z );
}
if( this.oreNormal == null || this.oreCharged == null )