mirror of
https://github.com/minetest-mods/technic.git
synced 2025-03-20 19:30:30 +01:00
16 lines
417 B
Lua
16 lines
417 B
Lua
local path = technic.modpath .. "/machines/other"
|
|
|
|
-- mesecons and tubes related
|
|
dofile(path .. "/injector.lua")
|
|
dofile(path .. "/constructor.lua")
|
|
|
|
if technic.config:get_bool("enable_frames") and minetest.get_modpath("mesecons_mvps") ~= nil then
|
|
dofile(path .. "/frames.lua")
|
|
end
|
|
|
|
-- Coal-powered machines
|
|
dofile(path .. "/coal_alloy_furnace.lua")
|
|
dofile(path .. "/coal_furnace.lua")
|
|
|
|
dofile(path .. "/anchor.lua")
|