The bug
When a boat drives through lily pads it destroys them, it looks however like the amount of particles created are way to many compared to the amount of particles when you break them:
Amount of particles | |
---|---|
Breaking | ~65 |
Boat breaking | ~130 |
The reason
The following is based on a decompiled version of Minecraft 1.10 using MCP 9.30.
The reason for this is that the method net.minecraft.block.BlockLilyPad.onEntityCollidedWithBlock(World, BlockPos, IBlockState, Entity)
destroys the block client-side as well. This way the client creates the particles and then receives a packet from the server to create the particles again.
That‘s a lot of particles! 😁