-
Bug
-
Resolution: Fixed
-
Minecraft 13w36b, Minecraft 13w37a, Minecraft 13w37b, Minecraft 1.7.4, Minecraft 14w08a, Minecraft 1.7.5, Minecraft 14w10b, Minecraft 14w11b, Minecraft 14w17a, Minecraft 14w21b, Minecraft 14w25a, Minecraft 14w25b, Minecraft 1.8, Minecraft 1.8.1-pre3, Minecraft 1.10.2, Minecraft 16w41a, Minecraft 16w42a
-
Win8 64x Java 7 Update 21
-
Confirmed
If you try adding custom NBT data to an item and have unbalanced curly brackets ({), it'll say you have unbalanced brackets. If you put unbalanced brackets ([), it'll say you have unbalanced curly brackets.
My testing:
Working:
/summon Arrow ~ ~ ~ {Motion:[1.0,0.0,0.0]}
Unbalanced "Curly":
/summon Arrow ~ ~ ~ {Motion:[1.0,0.0,0.0}
Unbalanced "Normal":
/summon Arrow ~ ~ ~ {Motion:[1.0,0.0,0.0]
And
Working:
/give FlyingPies155 1 1 0 {display:{Name:Test}}
Unbalanced "Curly":
/give FlyingPies155 1 1 0 {display:[Test}
Unbalanced "Normal:
/give FlyingPies155 1 1 0 {display:{Name:Test}
I know the /give example for the Unbalanced "Curly" is not how you actually use the metadata thing, but it still works.