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
is duplicated by 1
Attachments
Comments 3
@@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
The /particle command's syntax changed in 15w49a, adding
player
andparams
:player
is who can view the particle, whileparams
is where you provide a particle extra necessary parameters (in this case, the data for theblockcrack
,blockdust
, andiconcrack
particles):