mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 06:50:41 +01:00
14 lines
315 B
Lua
14 lines
315 B
Lua
|
|
technic.register_tier("HV", "High Voltage")
|
|
|
|
local path = technic.modpath.."/machines/HV"
|
|
|
|
dofile(path.."/cables.lua")
|
|
dofile(path.."/quarry.lua")
|
|
dofile(path.."/forcefield.lua")
|
|
dofile(path.."/battery_box.lua")
|
|
dofile(path.."/solar_array.lua")
|
|
dofile(path.."/nuclear_reactor.lua")
|
|
dofile(path.."/generator.lua")
|
|
|