What is wrong about this command? (commandblocks)
Solution 1:
tag
goes inside Item
.
Wrong way:
0: {
1: Item:{
2: id:"minecraft:paper"
3: },
4: tag:{
5: display:{
6: Name:'{"text":"Test"}'
7: }
8: }
9: }
Right way:
0: {
1: Item:{
2: id:"minecraft:paper",
3: tag:{
4: display:{
5: Name:'{"text":"Test"}'
6: }
7: }
8: }
9: }