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) {
return (T) this.randomHeight4FromFloorCeil().onlyInBiome().onEveryLayer(countPerLayer).onlyInBiome();
return (T) this.onEveryLayer(countPerLayer).onlyInBiome();
}
public T betterNetherGround(int countPerLayer) {
return (T) this.randomHeight4FromFloorCeil()
.count(countPerLayer)
.squarePlacement()
.onlyInBiome()
.onEveryLayerMin4()
.onlyInBiome();
}