-- this bit of code modifies the default chests and furnaces to be compatible
-- with pipeworks.
-function clone_node(name)
+function pipeworks:clone_node(name)
node2={}
node=minetest.registered_nodes[name]
for k,v in pairs(node) do
return node2
end
-furnace=clone_node("default:furnace")
+furnace=pipeworks:clone_node("default:furnace")
furnace.tiles[1] = "pipeworks_furnace_top.png"
furnace.tiles[2] = "pipeworks_furnace_bottom.png"
furnace.tiles[3] = "pipeworks_furnace_side.png"
minetest.register_node(":default:furnace",furnace)
-furnace=clone_node("default:furnace_active")
+furnace=pipeworks:clone_node("default:furnace_active")
furnace.tiles[1] = "pipeworks_furnace_top.png"
furnace.tiles[2] = "pipeworks_furnace_bottom.png"
furnace.tiles[3] = "pipeworks_furnace_side.png"
minetest.register_node(":default:furnace_active",furnace)
-chest=clone_node("default:chest")
+chest=pipeworks:clone_node("default:chest")
chest.tiles[1] = "pipeworks_chest_tb.png"
chest.tiles[2] = "pipeworks_chest_tb.png"
chest.tiles[3] = "pipeworks_chest_side.png"
minetest.register_node(":default:chest",chest)
-chest_locked=clone_node("default:chest_locked")
+chest_locked=pipeworks:clone_node("default:chest_locked")
chest_locked.tiles[1] = "pipeworks_chest_tb.png"
chest_locked.tiles[2] = "pipeworks_chest_tb.png"
chest_locked.tiles[3] = "pipeworks_chest_side.png"