remove unneeded chunkgenerator overrides

This commit is contained in:
dfsek
2022-05-31 14:37:30 -07:00
parent 7da0580eda
commit 75b72a500d

View File

@@ -115,17 +115,6 @@ public class NMSChunkGeneratorDelegate extends ChunkGenerator {
return vanilla.h();
}
@Override //getFirstFreeHeight
public int b(int i, int j, HeightMap.Type heightmap_type, LevelHeightAccessor levelheightaccessor) {
return this.a(i, j, heightmap_type, levelheightaccessor);
}
@Override //getFirstOccupiedHeight
public int c(int i, int j, HeightMap.Type heightmap_type, LevelHeightAccessor levelheightaccessor) {
return this.a(i, j, heightmap_type, levelheightaccessor) - 1;
}
@Override // getBaseHeight
public int a(int x, int z, HeightMap.Type heightmap, LevelHeightAccessor height) {
int y = world.getMaxHeight();