mirror of
https://github.com/mt-mods/pipeworks.git
synced 2025-06-29 14:50:41 +02:00
rewrote autoplacement code to make it more aware of filters,
autocrafter, nodebreaker, deployer, and made sure each item will only initiate a connection to those sides which can accept such. Fixed various autorouting bugs as I ran across them. Autorouting for various devices is now: filters: left and right sides only nodebreaker, deployer: back only autocrafter: all six sides chests: top, bottom, left, right, back (not front) furnace: bottom, left, right, back (not the top or front)
This commit is contained in:
@ -71,11 +71,15 @@ minetest.register_node("pipeworks:autocrafter",{
|
||||
local meta = minetest.env:get_meta(pos);
|
||||
local inv = meta:get_inventory()
|
||||
return (inv:is_empty("src") and inv:is_empty("recipe") and inv:is_empty("dst"))
|
||||
end})
|
||||
end,
|
||||
after_place_node = tube_scanforobjects,
|
||||
after_dig_node = tube_scanforobjects,
|
||||
})
|
||||
|
||||
minetest.register_abm({nodenames={"pipeworks:autocrafter"},interval=1,chance=1,
|
||||
action=function(pos,node)
|
||||
local meta=minetest.env:get_meta(pos)
|
||||
local inv=meta:get_inventory()
|
||||
autocraft(inv)
|
||||
end})
|
||||
end
|
||||
})
|
||||
|
Reference in New Issue
Block a user