[Change] Added missing Biome tests to some nether features
This commit is contained in:
parent
fa8603c7e1
commit
804d1fd323
1 changed files with 3 additions and 3 deletions
|
@ -392,15 +392,15 @@ abstract class CommonPlacedFeatureBuilder<F extends Feature<FC>, FC extends Feat
|
|||
}
|
||||
|
||||
public T vanillaNetherGround(int countPerLayer) {
|
||||
return (T) this.onEveryLayer(countPerLayer).onlyInBiome();
|
||||
return (T) this.randomHeight4FromFloorCeil().onlyInBiome().onEveryLayer(countPerLayer).onlyInBiome();
|
||||
}
|
||||
|
||||
public T betterNetherGround(int countPerLayer) {
|
||||
return (T) this.count(countPerLayer).squarePlacement().onEveryLayerMin4().onlyInBiome();
|
||||
return (T) this.randomHeight4FromFloorCeil().count(countPerLayer).squarePlacement().onlyInBiome().onEveryLayerMin4().onlyInBiome();
|
||||
}
|
||||
|
||||
public T betterNetherCeiling(int countPerLayer) {
|
||||
return (T) this.count(countPerLayer).squarePlacement().underEveryLayerMin4().onlyInBiome();
|
||||
return (T) this.randomHeight4FromFloorCeil().count(countPerLayer).squarePlacement().onlyInBiome().underEveryLayerMin4().onlyInBiome();
|
||||
}
|
||||
|
||||
public T betterNetherOnWall(int countPerLayer) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue