farming_technic/technic.lua

21 lines
377 B
Lua
Raw Permalink Normal View History

2018-10-31 06:37:06 -07:00
if minetest.get_modpath("technic") ~= nil then
technic.register_tier("VP", "Vapor driven")
2018-11-08 23:13:24 -08:00
local path = farming_technic.path
2018-10-31 06:37:06 -07:00
-- Wiring stuff
dofile(path.."/cables.lua")
dofile(path.."/battery_box.lua")
-- Generators
dofile(path.."/water_mill.lua")
dofile(path.."/generator.lua")
-- Machines
dofile(path.."/vapor_furnace.lua")
dofile(path.."/grinder.lua")
end