est31
2015-06-18 a793747d92d9b1d93153c7fb4e0c82fe90624c78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
technic.register_tier("LV", "Low Voltage")
 
local path = technic.modpath.."/machines/LV"
 
-- Wiring stuff
dofile(path.."/cables.lua")
dofile(path.."/battery_box.lua")
 
-- Generators
dofile(path.."/solar_panel.lua")
dofile(path.."/solar_array.lua")
dofile(path.."/geothermal.lua")
dofile(path.."/water_mill.lua")
dofile(path.."/generator.lua")
 
-- Machines
dofile(path.."/alloy_furnace.lua")
dofile(path.."/electric_furnace.lua")
dofile(path.."/grinder.lua")
dofile(path.."/extractor.lua")
dofile(path.."/compressor.lua")
 
dofile(path.."/music_player.lua")
 
dofile(path.."/cnc.lua")
dofile(path.."/cnc_api.lua")
dofile(path.."/cnc_nodes.lua")