Skip to content

Commit e346e2b

Browse files
committed
Fix Menril Saplings not growing with bonemeal, Closes #1664
1 parent abd105b commit e346e2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/cyclops/integrateddynamics/world/gen/trunkplacer/TrunkPlacerMenril.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected TrunkPlacerType<?> type() {
4545
public List<FoliagePlacer.FoliageAttachment> placeTrunk(WorldGenLevel world, BiConsumer<BlockPos, BlockState> callback, RandomSource rand, int height,
4646
BlockPos pos, TreeConfiguration config) {
4747
// Only generate if stump is fully on ground (other checks are done in TreeFeature.place)
48-
BlockPos basePos = pos.below();
48+
BlockPos basePos = pos;
4949
if (!TreeFeature.isAirOrLeaves(world, basePos.north())
5050
&& !TreeFeature.isAirOrLeaves(world, basePos.east())
5151
&& !TreeFeature.isAirOrLeaves(world, basePos.south())

0 commit comments

Comments
 (0)