The dripstone floating in the air, this bug need to be fixed.
Linked issues
duplicates 1
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;
}
Duplicate of MC-206578