summaryrefslogtreecommitdiff
path: root/technic/machines/HV/init.lua
blob: 468932da477d3c4ab923887e7a7bf6e5a1886f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

technic.register_tier("HV", "High Voltage")

local path = technic.modpath.."/machines/HV"

-- Wiring stuff
dofile(path.."/cables.lua")
dofile(path.."/battery_box.lua")

-- Generators
if technic.config:get_bool("enable_producers") then
	dofile(path.."/solar_array.lua")
	dofile(path.."/nuclear_reactor.lua")
	dofile(path.."/generator.lua")
end

-- Machines
dofile(path.."/quarry.lua")
dofile(path.."/forcefield.lua")