Moderator note
Solved by adding the Count
tag:
/summon Item ~ ~ ~ {Item:{id:"minecraft:diamond_sword",Count:1}}
/summon Item ~ ~1 ~ {Item:{id:276}}
I summoned a diamond sword and can't pick it up. When I throw another diamond sword on it then it gets stacked and can be picked up. But I only get one diamond sword back.
Edit: With "PickupDelay" it didn't work too.
Linked issues
is duplicated by 12
7 more links
relates to 1
Comments 4
Probably unfixable. If you don't set up the value Count, it defaults to 0. This causes undefined behavior. Using
/summon Item ~ ~ ~ {Item:{id:"minecraft:diamond_sword",Count:1}}
works.
Confirmed