If I summon an enderman with this command:
/summon enderman ~ ~ ~ {carried:"minecraft:stone"}
The enderman is summoned with the carried block as it should be
But if I try to detect this same enderman with this command:
/execute as @e[type=enderman,nbt={carried:"minecraft:stone"}] run say enderman with stone
The chat gives me this error:
Enderman did not match the required data structured
If I try the same command with numeric ids the command works:
/execute as @e[type=enderman,nbt={carried:1s}] run say enderman with stone
The expected behavior is that reading the carried
tag as short will be removed with MC-75430 getting fixed
Linked issues
relates to 2
Comments 11
The MC-75430 doesn't mention all the things that happen in the 1.9 snapshots, like the thing that is unable to detect if a enderman does not carry a block.
Is this still an issue in the latest snapshot 16w44a? If so please update the affected versions.
This is an automated comment on any open or reopened issue with out-of-date affected versions.
The carried:0s
part is now MC-111064
Duplicates MC-75430