9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 18:19:14 +00:00
This commit is contained in:
Daniel Mills
2020-08-03 23:30:03 -04:00
parent e5d622780e
commit 4f99743db7

View File

@@ -635,11 +635,6 @@ public abstract class TerrainChunkGenerator extends ParallelChunkGenerator
return getNoiseHeight(x, z) + getFluidHeight();
}
public double getTerrainHeightUncached(int x, int z)
{
return getNoiseHeight(x, z) + getFluidHeight();
}
public double getTerrainWaterHeight(int x, int z)
{
return Math.max(getTerrainHeight(x, z), getFluidHeight());