Changed default Feature Placement behaviour for nether vegetation

This commit is contained in:
Frank 2023-05-24 17:19:26 +02:00
parent 48e89b6b57
commit 8777723bb8

View file

@ -396,14 +396,13 @@ abstract class CommonPlacedFeatureBuilder<F extends Feature<FC>, FC extends Feat
} }
public T vanillaNetherGround(int countPerLayer) { public T vanillaNetherGround(int countPerLayer) {
return (T) this.randomHeight4FromFloorCeil().onlyInBiome().onEveryLayer(countPerLayer).onlyInBiome(); return (T) this.onEveryLayer(countPerLayer).onlyInBiome();
} }
public T betterNetherGround(int countPerLayer) { public T betterNetherGround(int countPerLayer) {
return (T) this.randomHeight4FromFloorCeil() return (T) this.randomHeight4FromFloorCeil()
.count(countPerLayer) .count(countPerLayer)
.squarePlacement() .squarePlacement()
.onlyInBiome()
.onEveryLayerMin4() .onEveryLayerMin4()
.onlyInBiome(); .onlyInBiome();
} }