From fadd91c7444661b297f2cd085d91b80ec7fdd650 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 1 Jan 2013 18:17:43 -0500 Subject: [PATCH] fixed facedir/rotation bug in placement of expansion tanks. --- autoplace.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoplace.lua b/autoplace.lua index 7e6a329..ef5bbda 100644 --- a/autoplace.lua +++ b/autoplace.lua @@ -181,11 +181,11 @@ function pipes_scansurroundings(pos) end function pipe_look_for_stackable_tanks(pos) - tym = minetest.env:get_node({ x=pos.x , y=pos.y-1, z=pos.z }) + local tym = minetest.env:get_node({ x=pos.x , y=pos.y-1, z=pos.z }) if string.find(tym.name, "pipeworks:storage_tank_") ~= nil or string.find(tym.name, "pipeworks:expansion_tank_") ~= nil then - minetest.env:add_node(pos, { name = "pipeworks:expansion_tank_0"}) + minetest.env:add_node(pos, { name = "pipeworks:expansion_tank_0", param2 = tym.param2}) end end