The bug
The following is based on decompiled version of Minecraft 1.9 using MCP 9.24 beta. All method and class names are the names used in the decompiled version.
There are multiple methods that run for the client and the server to create particles. The particles created by the server are not send to the client due to MC-10369. However the server should not even try to create the particles in the listed cases as the client does this already. The method that they call is net.minecraft.world.World.spawnParticle(EnumParticleTypes, double, double, double, double, double, double, int...)
.
Affected methods
Last updated for 1.11.2
Some methods might have to be adjusted to send particles and sound to the other players. This list contains only the methods which create the particles, adding a condition to only create the particles for the client might introduce new bugs. Therefor in some cases the calling methods need to be changed.
Method | Note |
---|---|
| - |
| - |
| - |
| - |
| should be called "createWaterParticlesAndSound" or something similar |
| - |
| air bubbles under water |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| - |
| see MC-93826 |
| - |
| duplicate eating particles? |
| - |
| - |
| critical and in water |
| in water and smoke |
| water particles |
| smoke particles in Nether |
| - |
Related issues
relates to
Comments


@unknown: Didn't you recently somewhere put a list that MC-XXX, MC-YYY, MC-AAA and MC-THIS are duplicating MC-ABCD ? I was sure that this ticket was in that list...

Yes sorry, that was my mistake. I commented on MC-10369 asking for all related reports to be closed. However, I did not think of the other related reports...

Is this still a issue in the latest version of the game(currently 1.13.1)?
If so, please add it to the affected versions, thanks!
This is not a duplicate.
MC-10369 describes the fact that server side only calls do not create particles for the client. However this report is about the fact that in situations in which the client creates the particles the server side method is called as well.