Skip to content

Commit

Permalink
Add rotation values to lit redstone torches.
Browse files Browse the repository at this point in the history
Fixes WORLDEDIT-3273.
  • Loading branch information
wizjany committed Mar 6, 2015
1 parent 1209e48 commit 2fedcf8
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2720,6 +2720,17 @@
"legacyId": 76,
"id": "minecraft:redstone_torch",
"unlocalizedName": "tile.notGate",
"states": {
"facing": {
"values": {
"east": { "data": 1, "direction": [1, 0, 0] },
"west": { "data": 2, "direction": [-1, 0, 0] },
"north": { "data": 3, "direction": [0, 0, -1] },
"south": { "data": 4, "direction": [0, 0, 1] },
"up": { "data": 5, "direction": [0, 1, 0] }
}
}
},
"material": {
"renderedAsNormalBlock": false,
"fullCube": false,
Expand Down Expand Up @@ -6010,4 +6021,4 @@
"replacedDuringPlacement": false
}
}
]
]

0 comments on commit 2fedcf8

Please sign in to comment.