Skip to content

Commit

Permalink
Use minetest.swap_node instead of hacky_swap_node
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekdohibs committed Dec 8, 2013
1 parent ba4c806 commit 47a49ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 21 deletions.
15 changes: 5 additions & 10 deletions mods/default/nodes.lua
Expand Up @@ -960,18 +960,13 @@ minetest.register_node("default:furnace_active", {
end,
})

function hacky_swap_node(pos,name)
local function swap_node(pos,name)
local node = minetest.get_node(pos)
local meta = minetest.get_meta(pos)
local meta0 = meta:to_table()
if node.name == name then
return
end
node.name = name
local meta0 = meta:to_table()
minetest.set_node(pos,node)
meta = minetest.get_meta(pos)
meta:from_table(meta0)
minetest.swap_node(pos,node)
end

minetest.register_abm({
Expand Down Expand Up @@ -1025,7 +1020,7 @@ minetest.register_abm({
local percent = math.floor(meta:get_float("fuel_time") /
meta:get_float("fuel_totaltime") * 100)
meta:set_string("infotext","Furnace active: "..percent.."%")
hacky_swap_node(pos,"default:furnace_active")
swap_node(pos,"default:furnace_active")
meta:set_string("formspec",default.get_furnace_active_formspec(pos, percent))
return
end
Expand All @@ -1045,15 +1040,15 @@ minetest.register_abm({

if fuel.time <= 0 then
meta:set_string("infotext","Furnace out of fuel")
hacky_swap_node(pos,"default:furnace")
swap_node(pos,"default:furnace")
meta:set_string("formspec", default.furnace_inactive_formspec)
return
end

if cooked.item:is_empty() then
if was_active then
meta:set_string("infotext","Furnace is empty")
hacky_swap_node(pos,"default:furnace")
swap_node(pos,"default:furnace")
meta:set_string("formspec", default.furnace_inactive_formspec)
end
return
Expand Down
8 changes: 2 additions & 6 deletions mods/doors/init.lua
Expand Up @@ -113,14 +113,10 @@ function doors:register_door(name, def)
local p2 = minetest.get_node(pos).param2
p2 = params[p2+1]

local meta = minetest.get_meta(pos):to_table()
minetest.set_node(pos, {name=replace_dir, param2=p2})
minetest.get_meta(pos):from_table(meta)
minetest.swap_node(pos, {name=replace_dir, param2=p2})

pos.y = pos.y-dir
meta = minetest.get_meta(pos):to_table()
minetest.set_node(pos, {name=replace, param2=p2})
minetest.get_meta(pos):from_table(meta)
minetest.swap_node(pos, {name=replace, param2=p2})
end

local function check_player_priv(pos, player)
Expand Down
6 changes: 1 addition & 5 deletions mods/screwdriver/init.lua
Expand Up @@ -113,12 +113,8 @@ function screwdriver_handler (itemstack,user,pointed_thing)
end
end
--print (dump(axisdir..", "..rotation))
local meta = minetest.get_meta(pos)
local meta0 = meta:to_table()
node.param2 = n
minetest.set_node(pos,node)
meta = minetest.get_meta(pos)
meta:from_table(meta0)
minetest.swap_node(pos,node)
local item=itemstack:to_table()
local item_wear=tonumber((item["wear"]))
item_wear=item_wear+327
Expand Down

0 comments on commit 47a49ec

Please sign in to comment.