Duplicate note
This is caused by MC-80975. When placing an ArmorStand its body and head rotation are randomized. When you summon an ArmorStand none of its Pose
entries are randomized so they are all not saved.
Caused by:
Relates to:
When you place an ArmorStand and use for example this command:
/entitydata @e[type=ArmorStand,c=1] {ShowArms:1b}
You will see the arms, but the ArmorStand still doesn't contain the LeftArm
and RightArm
tag in the Pose
compound:
NBT structure
Pose:{
Head:[
0:2.8267171f,
1:-5.086746f,
2:0.0f
],
Body:[
0:0.0f,
1:1.7570348f,
2:0.0f
]
}
This is also for the legs by default, their tags are missing as well.
Linked issues
duplicates 1
Comments 2
Duplicates MC-80975
Why is this "Works as Intended"?
The values are not
[0f,0f,0f]
so they should exist.