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

dofile(path.."/register/init.lua")

-- Tiers
dofile(path.."/LV/init.lua")
dofile(path.."/MV/init.lua")
dofile(path.."/HV/init.lua")

dofile(path.."/switching_station.lua")
dofile(path.."/power_monitor.lua")
dofile(path.."/supply_converter.lua")

dofile(path.."/other/init.lua")

if technic.config:get_bool("enable_creative_mode") then
	--The switching station does not handle running machines
	--in this mode, so alternative means are used to do so.
	dofile(path.."/creative.lua")
end