From f46bc329de7bfc35f64a17822247372e6fa3a1cb Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sat, 30 Nov 2013 20:20:01 -0500 Subject: Use minetest.swap_node() instead of mesecons' version, Minor code changes here and there to facilitate this. --- mesecons_lightstone/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesecons_lightstone/init.lua') diff --git a/mesecons_lightstone/init.lua b/mesecons_lightstone/init.lua index e208f91..5d47e1b 100644 --- a/mesecons_lightstone/init.lua +++ b/mesecons_lightstone/init.lua @@ -6,7 +6,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on) sounds = default.node_sound_stone_defaults(), mesecons = {effector = { action_on = function (pos, node) - mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_on") + minetest.swap_node(pos, {name = "mesecons_lightstone:lightstone_" .. name .. "_on", param2 = node.param2}) end }} }) @@ -18,7 +18,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on) sounds = default.node_sound_stone_defaults(), mesecons = {effector = { action_off = function (pos, node) - mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_off") + minetest.swap_node(pos, {name = "mesecons_lightstone:lightstone_" .. name .. "_off", param2 = node.param2}) end }} }) -- cgit v1.2.3