summaryrefslogtreecommitdiff
path: root/compat.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-11-14 18:54:50 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-11-14 18:54:50 -0500
commite7a1fed5d36531c2529631bc4282cb470ad9b3b5 (patch)
treeb4e74f35cce933a8f91d43295c4c2569008d8620 /compat.lua
parent1c7f2722d6cedb59cb1d3c1af8698bf1ebff0b38 (diff)
downloadpipeworks-e7a1fed5d36531c2529631bc4282cb470ad9b3b5.tar
pipeworks-e7a1fed5d36531c2529631bc4282cb470ad9b3b5.tar.gz
pipeworks-e7a1fed5d36531c2529631bc4282cb470ad9b3b5.tar.bz2
pipeworks-e7a1fed5d36531c2529631bc4282cb470ad9b3b5.tar.xz
pipeworks-e7a1fed5d36531c2529631bc4282cb470ad9b3b5.zip
stop leaking clone_node() function outside of pipeworks namespace
Diffstat (limited to 'compat.lua')
-rw-r--r--compat.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/compat.lua b/compat.lua
index d82635d..05558f8 100644
--- a/compat.lua
+++ b/compat.lua
@@ -1,7 +1,7 @@
-- 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
@@ -10,7 +10,7 @@ function clone_node(name)
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"
@@ -50,7 +50,7 @@ furnace=clone_node("default:furnace")
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"
@@ -90,7 +90,7 @@ furnace=clone_node("default:furnace_active")
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"
@@ -121,7 +121,7 @@ chest=clone_node("default:chest")
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"