Changed default Feature Placement behaviour for nether vegetation
This commit is contained in:
parent
48e89b6b57
commit
8777723bb8
1 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue