Update the mesecons mod and dependencies

This touches a lot of the existing Mesecons mods.
Also add mesecons_wires.
This commit is contained in:
Wuzzy 2017-07-31 00:12:21 +02:00
parent 66829c91c3
commit b299b95fac
27 changed files with 1542 additions and 554 deletions

View file

@ -8,7 +8,7 @@ minetest.register_node("mesecons_lightstone:lightstone_off", {
sounds = mcl_sounds.node_sound_glass_defaults(),
mesecons = {effector = {
action_on = function (pos, node)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_on")
minetest.swap_node(pos, {name="mesecons_lightstone:lightstone_on", param2 = node.param2})
end
}},
_mcl_blast_resistance = 1.5,
@ -27,7 +27,7 @@ minetest.register_node("mesecons_lightstone:lightstone_on", {
sounds = mcl_sounds.node_sound_glass_defaults(),
mesecons = {effector = {
action_off = function (pos, node)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_off")
minetest.swap_node(pos, {name="mesecons_lightstone:lightstone_off", param2 = node.param2})
end
}},
_mcl_blast_resistance = 1.5,