rnd1 deaeab8c05 - new recycler machine: it recycles blocks and returns 75% of raw materials. to operate it must sit on top of operating furnace. its signal activated
- detector: now NOT mode with specified name triggers only if player present but its not specified player, sensor range 10
- autocrafter: added from pipeworks mod. adapted with disabled timer, only owner can interact and its signal activated
2015-09-29 12:20:14 +02:00

10 lines
536 B
Lua

dofile(minetest.get_modpath("basic_machines").."/mark.lua") -- used for markings, borrowed and adapted from worldedit mod
dofile(minetest.get_modpath("basic_machines").."/mover.lua")
dofile(minetest.get_modpath("basic_machines").."/recycler.lua")
dofile(minetest.get_modpath("basic_machines").."/autocrafter.lua") -- borrowed from pipeworks mod
-- IF USING UNTERNULL GAME COMMENT THE FOLLOWING
minetest.after(1, function() -- if you want keypad to open doors
dofile(minetest.get_modpath("basic_machines").."/mesecon_doors.lua")
end)