summaryrefslogtreecommitdiff
path: root/mesecons_torch
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-11-30 20:20:01 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-11-30 20:34:55 -0500
commitf46bc329de7bfc35f64a17822247372e6fa3a1cb (patch)
tree6c2d44b6dfafbda51b8ea4a5cd5d1b91bfe6dfb5 /mesecons_torch
parent669e3d088030709a60db7e71e6503952fb997677 (diff)
downloadmesecons-f46bc329de7bfc35f64a17822247372e6fa3a1cb.tar
mesecons-f46bc329de7bfc35f64a17822247372e6fa3a1cb.tar.gz
mesecons-f46bc329de7bfc35f64a17822247372e6fa3a1cb.tar.bz2
mesecons-f46bc329de7bfc35f64a17822247372e6fa3a1cb.tar.xz
mesecons-f46bc329de7bfc35f64a17822247372e6fa3a1cb.zip
Use minetest.swap_node() instead of mesecons' version, Minor code changes
here and there to facilitate this.
Diffstat (limited to 'mesecons_torch')
-rw-r--r--mesecons_torch/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_torch/init.lua b/mesecons_torch/init.lua
index 77777db..97a2991 100644
--- a/mesecons_torch/init.lua
+++ b/mesecons_torch/init.lua
@@ -99,11 +99,11 @@ minetest.register_abm({
if is_powered then
if node.name == "mesecons_torch:mesecon_torch_on" then
- mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_off")
+ minetest.swap_node(pos, {name = "mesecons_torch:mesecon_torch_off", param2 = node.param2})
mesecon:receptor_off(pos, torch_get_output_rules(node))
end
elseif node.name == "mesecons_torch:mesecon_torch_off" then
- mesecon:swap_node(pos, "mesecons_torch:mesecon_torch_on")
+ minetest.swap_node(pos, {name = "mesecons_torch:mesecon_torch_on", param2 = node.param2})
mesecon:receptor_on(pos, torch_get_output_rules(node))
end
end