mojira.dev
MC-206872

Falling dripstone(down) floating in the air if dripstone is long (dripstone height>40)

The dripstone floating in the air, this bug need to be fixed.

Linked issues

Comments 2

It's 50, not 40
it can be easily fixed by changing this in the code:

net.minecraft.world.level.block.PointedDripstoneBlock.java

private static BlockPos findTip(BlockState lvt0, LevelAccessor lvt1, BlockPos lvt2) {
      ...
      for(int i = 0; i < 50; ++i) {...}
      return null;
   }

to

private static BlockPos findTip(BlockState lvt0, LevelAccessor lvt1, BlockPos lvt2) {
      ...
      for(int i = 0; i < 255; ++i) {...}
      return null;
   }

Darwin

(Unassigned)

Unconfirmed

(Unassigned)

20w48a

Retrieved