diff options
author | Novatux <nathanael.courant@laposte.net> | 2013-10-13 16:24:17 +0200 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2013-10-13 16:24:17 +0200 |
commit | a73d568e58a91bc5d920527dc5e308d51dbb1bb9 (patch) | |
tree | 2c1b92450f7dafe7b82a7749033715dd04c874ab | |
parent | 48d571bd90f0c709869b1724e80a8775ab390429 (diff) |
Bugfix
-rw-r--r-- | technic/machines/other/frames.lua | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/technic/machines/other/frames.lua b/technic/machines/other/frames.lua index fe9a4bb..148e3f8 100644 --- a/technic/machines/other/frames.lua +++ b/technic/machines/other/frames.lua @@ -73,9 +73,9 @@ local function move_nodes_vect(poslist,vect,must_not_move,owner) if (name~="air" and minetest.registered_nodes[name].liquidtype=="none") and not(pos_in_list(poslist,npos)) then return end - if pos.x==must_not_move.x and pos.y==must_not_move.y and pos.z==must_not_move.z then + --[[if pos.x==must_not_move.x and pos.y==must_not_move.y and pos.z==must_not_move.z then return - end + end]] end nodelist={} for _,pos in ipairs(poslist) do @@ -285,8 +285,11 @@ local function template_connected(pos,c) local pos1=vector.add(pos,vect) local nodename=minetest.get_node(pos1).name if not(pos_in_list(c,pos1)) and nodename=="technic:template" then - c[#(c)+1]=pos1 - template_connected(pos1,c) + local meta = minetest.get_meta(pos1) + if meta:get_string("connected") == "" then + c[#(c)+1]=pos1 + template_connected(pos1,c) + end end end end @@ -426,7 +429,7 @@ minetest.register_tool("technic:template_tool",{ inventory_image = "technic_template_tool.png", on_use = function(itemstack, puncher, pointed_thing) local pos = pointed_thing.under - if minetest.is_protected and minetest.is_protected(pos, placer:get_player_name()) then + if pos == nil or (minetest.is_protected and minetest.is_protected(pos, placer:get_player_name())) then return nil end local node = minetest.get_node(pos) |