mojira.dev
MC-94051

Blockcrack itemcrack etc... particles not working properly

The blockcrack (and other particles of the same behavior) aren't working as they should. In other versions, When you would write this command:
/particle blockcrack_46 ~ ~ ~ 1 1 1 1 1
It would show the "tnt Break" particles but in the newer version they don't show up at all (This also occurs with other ids)

Linked issues

Attachments

Comments 3

The /particle command's syntax changed in 15w49a, adding player and params:

/particle <name> <x> <y> <z> <xd> <yd> <zd> <speed> [count] [mode] [player] [params]

player is who can view the particle, while params is where you provide a particle extra necessary parameters (in this case, the data for the blockcrack, blockdust, and iconcrack particles):

/particle blockcrack ~ ~ ~ 1 1 1 1 1 normal @a 46

How to do podzol's particles ?

@@unknown, For blockcrack and blockdust you'll use the formula blockId | (metaData << 12 (essentially blockId + (metaData * 4096)):

/particle blockcrack ~ ~1 ~ 0 0 0 0 1 normal @a 8195
/particle blockdust ~ ~1 ~ 0 0 0 0 1 normal @a 8195

iconcrack will use two parameters, with the first being the numerical block ID and the second being the Damage value:

/particle iconcrack ~ ~1 ~ 0 0 0 0 1 normal @a 3 2

Marcus Hamelink

(Unassigned)

Unconfirmed

Minecraft 15w49b

Retrieved