How to reproduce
Summon an zombie with diamond armour with
/summon minecraft:zombie ~ ~ ~ {ArmorItems:[{id:"minecraft:diamond_boots",Count:1},{id:"minecraft:diamond_leggings",Count:1},{id:"minecraft:diamond_chestplate",Count:1},{id:"minecraft:diamond_helmet",Count:1}]}
Try to remove the armour with
/data remove entity @e[type=minecraft:zombie,sort=nearest,limit=1] ArmorItems
and see that it does not work.
However, removing only the helmet with
/data remove entity @e[type=minecraft:zombie,sort=nearest,limit=1] ArmorItems[3]
does work.
Linked issues
relates to 4
Attachments
Comments 7
/data remove entity @e[type=minecraft:zombie,sort=nearest,limit=1] ArmorItems[0]
will remove all the armor from the zombie.
The second one is MC-112826.
Relates to MC-122008.
Can confirm.