diff --git a/src/main/java/org/betterx/bclib/api/v3/levelgen/features/features/PillarFeature.java b/src/main/java/org/betterx/bclib/api/v3/levelgen/features/features/PillarFeature.java index 3cc71224..2675fb52 100644 --- a/src/main/java/org/betterx/bclib/api/v3/levelgen/features/features/PillarFeature.java +++ b/src/main/java/org/betterx/bclib/api/v3/levelgen/features/features/PillarFeature.java @@ -25,8 +25,9 @@ public class PillarFeature extends Feature { int maxHeight = config.maxHeight.sample(rnd); int minHeight = config.minHeight.sample(rnd); BlockPos.MutableBlockPos posnow = featurePlaceContext.origin().mutable(); + posnow.move(config.direction); - for (height = 0; height < maxHeight; ++height) { + for (height = 1; height < maxHeight; ++height) { if (!config.allowedPlacement.test(level, posnow)) { maxHeight = height; break;