Particles that form on the bottoms of leaves during rain use 32-bit precision instead of 64-bit like most other particles. As a result, at high coordinates these will become less precise and only form at the corners of blocks.
All types of dripping particles have been tested (water drips from blocks with water above, water from waterlogged blocks, water from sponges, lava drips from blocks with lava above, and honey drips from bee nests and beehives) and this is the only type of dripping that loses precision at such distances.
This is best tested when greater than 16,777,216 blocks out on both axes, so being 20 million blocks out should suffice. This issue is without a doubt due to incorrectly casting to a 32-bit float from an integer or double, resulting in numerical precision being lost. This can be fixed by simply not casting to a float, which eliminates any chance of losing any precision.
Related tickets: MC-182789
Linked issues
Attachments
Comments 2
Remove the relates to for MC-76810
can confirm