diff options
author | est31 <MTest31@outlook.com> | 2015-06-18 04:10:13 +0200 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-06-18 04:16:47 +0200 |
commit | a793747d92d9b1d93153c7fb4e0c82fe90624c78 (patch) | |
tree | aa9ef9e00ddfc97fbb0b586f7279b2ec02752edf | |
parent | d732c8dfbd818e9b0b4a04620af40399b35c74ab (diff) |
Move coal furnaces to other/
They don't use power, move them to where they belong.
-rw-r--r-- | technic/machines/LV/init.lua | 4 | ||||
-rw-r--r-- | technic/machines/other/coal_alloy_furnace.lua (renamed from technic/machines/LV/coal_alloy_furnace.lua) | 0 | ||||
-rw-r--r-- | technic/machines/other/coal_furnace.lua (renamed from technic/machines/LV/coal_furnace.lua) | 0 | ||||
-rw-r--r-- | technic/machines/other/init.lua | 4 |
4 files changed, 4 insertions, 4 deletions
diff --git a/technic/machines/LV/init.lua b/technic/machines/LV/init.lua index f8778cd..30523c9 100644 --- a/technic/machines/LV/init.lua +++ b/technic/machines/LV/init.lua @@ -14,10 +14,6 @@ dofile(path.."/geothermal.lua") dofile(path.."/water_mill.lua") dofile(path.."/generator.lua") --- Coal-powered machines (TODO -> move to somewhere else?) -dofile(path.."/coal_alloy_furnace.lua") -dofile(path.."/coal_furnace.lua") - -- Machines dofile(path.."/alloy_furnace.lua") dofile(path.."/electric_furnace.lua") diff --git a/technic/machines/LV/coal_alloy_furnace.lua b/technic/machines/other/coal_alloy_furnace.lua index 58af679..58af679 100644 --- a/technic/machines/LV/coal_alloy_furnace.lua +++ b/technic/machines/other/coal_alloy_furnace.lua diff --git a/technic/machines/LV/coal_furnace.lua b/technic/machines/other/coal_furnace.lua index 53a0f8b..53a0f8b 100644 --- a/technic/machines/LV/coal_furnace.lua +++ b/technic/machines/other/coal_furnace.lua diff --git a/technic/machines/other/init.lua b/technic/machines/other/init.lua index a3640e3..f4a82f0 100644 --- a/technic/machines/other/init.lua +++ b/technic/machines/other/init.lua @@ -8,4 +8,8 @@ if technic.config:get_bool("enable_frames") and minetest.get_modpath("mesecons_m dofile(path.."/frames.lua") end +-- Coal-powered machines +dofile(path.."/coal_alloy_furnace.lua") +dofile(path.."/coal_furnace.lua") + dofile(path.."/anchor.lua") |