From 51db4a21ed1aef6888ae121cff3ca5fd19f23f37 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 12 Mar 2017 05:07:57 +0100 Subject: [PATCH] Fix redstone blocks not conducting to -X --- mods/ITEMS/REDSTONE/mesecons_torch/init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/mods/ITEMS/REDSTONE/mesecons_torch/init.lua b/mods/ITEMS/REDSTONE/mesecons_torch/init.lua index 34bd8e132..c660860d7 100644 --- a/mods/ITEMS/REDSTONE/mesecons_torch/init.lua +++ b/mods/ITEMS/REDSTONE/mesecons_torch/init.lua @@ -90,7 +90,14 @@ minetest.register_node("mesecons_torch:redstoneblock", { is_ground_content = false, mesecons = {receptor = { state = mesecon.state.on, - rules = torch_get_output_rules + rules = { + {x = 1, y = 0, z = 0}, + {x = -1, y = 0, z = 0}, + {x = 0, y = 0, z = 1}, + {x = 0, y = 0, z =-1}, + {x = 0, y = 1, z = 0}, + {x = 0, y =-1, z = 0} + } }}, mcl_blast_resistance = 30, mcl_hardness = 5,