[Fix] Moved Biome Check

This commit is contained in:
Frank 2022-08-01 23:08:35 +02:00
parent 62c36dc3ea
commit 37502c4853

View file

@ -398,16 +398,16 @@ abstract class CommonPlacedFeatureBuilder<F extends Feature<FC>, FC extends Feat
return (T) this.count(countPerLayer) return (T) this.count(countPerLayer)
.squarePlacement() .squarePlacement()
.randomHeight4FromFloorCeil() .randomHeight4FromFloorCeil()
.onWalls(16, 0) .onlyInBiome()
.onlyInBiome(); .onWalls(16, 0);
} }
public T betterNetherInWall(int countPerLayer) { public T betterNetherInWall(int countPerLayer) {
return (T) this.count(countPerLayer) return (T) this.count(countPerLayer)
.squarePlacement() .squarePlacement()
.randomHeight4FromFloorCeil() .randomHeight4FromFloorCeil()
.onWalls(16, 1) .onlyInBiome()
.onlyInBiome(); .onWalls(16, 1);
} }
/** /**