forked from mtcontrib/pipeworks
Merge pull request #18 from Novatux/master
Improved the code of the teleport tube.
This commit is contained in:
commit
8513f4a881
@ -41,11 +41,19 @@ end
|
|||||||
function get_tubes_in_file(pos,channel)
|
function get_tubes_in_file(pos,channel)
|
||||||
tbl=read_file()
|
tbl=read_file()
|
||||||
newtbl={}
|
newtbl={}
|
||||||
|
changed=false
|
||||||
for _,val in ipairs(tbl) do
|
for _,val in ipairs(tbl) do
|
||||||
|
local node = minetest.env:get_node(val)
|
||||||
|
local meta = minetest.env:get_meta(val)
|
||||||
|
if node.name~="ignore" and val.channel~=meta:get_string("channel") then
|
||||||
|
val.channel=meta:get_string("channel")
|
||||||
|
changed=true
|
||||||
|
end
|
||||||
if val.channel==channel and (val.x~=pos.x or val.y~=pos.y or val.z~=pos.z) then
|
if val.channel==channel and (val.x~=pos.x or val.y~=pos.y or val.z~=pos.z) then
|
||||||
table.insert(newtbl,val)
|
table.insert(newtbl,val)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if changed then write_file(tbl) end
|
||||||
return newtbl
|
return newtbl
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -85,6 +93,6 @@ register_tube("pipeworks:teleport_tube","Teleporter pneumatic tube segment",tele
|
|||||||
remove_tube_in_file(pos)
|
remove_tube_in_file(pos)
|
||||||
add_tube_in_file(pos,fields.channel)
|
add_tube_in_file(pos,fields.channel)
|
||||||
end,
|
end,
|
||||||
after_dig_node = function(pos)
|
on_destruct = function(pos)
|
||||||
remove_tube_in_file(pos)
|
remove_tube_in_file(pos)
|
||||||
end})
|
end})
|
||||||
|
Loading…
Reference in New Issue
Block a user