diff --git a/src/main/java/org/betterx/bclib/api/v3/levelgen/features/CommonPlacedFeatureBuilder.java b/src/main/java/org/betterx/bclib/api/v3/levelgen/features/CommonPlacedFeatureBuilder.java index 5e0bbe2e..9ae8dd48 100644 --- a/src/main/java/org/betterx/bclib/api/v3/levelgen/features/CommonPlacedFeatureBuilder.java +++ b/src/main/java/org/betterx/bclib/api/v3/levelgen/features/CommonPlacedFeatureBuilder.java @@ -396,14 +396,13 @@ abstract class CommonPlacedFeatureBuilder, 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(); }