From 2fedcf8019b0bd07ecd0c470a2ec36bd3b53077e Mon Sep 17 00:00:00 2001 From: Wizjany Date: Fri, 6 Mar 2015 15:22:55 -0500 Subject: [PATCH] Add rotation values to lit redstone torches. Fixes WORLDEDIT-3273. --- .../com/sk89q/worldedit/world/registry/blocks.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json index f745e2a09..9dd4bc7bf 100644 --- a/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json +++ b/worldedit-core/src/main/resources/com/sk89q/worldedit/world/registry/blocks.json @@ -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, @@ -6010,4 +6021,4 @@ "replacedDuringPlacement": false } } -] \ No newline at end of file +]