forked from VoxeLibre/VoxeLibre
Fix redstone blocks not conducting to -X
This commit is contained in:
parent
1fa69536c6
commit
51db4a21ed
|
@ -90,7 +90,14 @@ minetest.register_node("mesecons_torch:redstoneblock", {
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
mesecons = {receptor = {
|
mesecons = {receptor = {
|
||||||
state = mesecon.state.on,
|
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_blast_resistance = 30,
|
||||||
mcl_hardness = 5,
|
mcl_hardness = 5,
|
||||||
|
|
Loading…
Reference in New Issue