This commit is contained in:
Jeija 2012-12-11 18:15:44 +01:00
parent a55874b5d2
commit 5540fcbcb3
1 changed files with 2 additions and 4 deletions

View File

@ -6,8 +6,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
description=name.." Lightstone",
mesecons = {effector = {
action_on = function (pos, node)
minetest.env:add_node(pos, {name="mesecons_lightstone:lightstone_" .. name .. "_on"})
mesecon:receptor_on(pos)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_on")
end
}}
})
@ -19,8 +18,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
light_source = LIGHT_MAX-2,
mesecons = {effector = {
action_off = function (pos, node)
minetest.env:add_node(pos, {name="mesecons_lightstone:lightstone_" .. name .. "_off"})
mesecon:receptor_off(pos)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_off")
end
}}
})