linked terrain chunk min height support

This commit is contained in:
DanLT 2021-06-17 19:25:42 -08:00
parent 356aa27f70
commit 7efdcdc592

View File

@ -122,6 +122,11 @@ public class LinkedTerrainChunk implements TerrainChunk
biome3D.setBiome(x, y, z, bio);
}
@Override
public int getMinHeight() {
return rawChunkData.getMinHeight();
}
@Override
public int getMaxHeight()
{