mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 07:40:37 +02:00
Add milling machine from non cubic to technic mod.
Next step is to make sure it only works if powered.
This commit is contained in:
@ -2,6 +2,8 @@
|
||||
-- namespace: technic
|
||||
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
|
||||
|
||||
technic = {}
|
||||
|
||||
modpath=minetest.get_modpath("technic")
|
||||
|
||||
--Read technic config file
|
||||
@ -25,6 +27,9 @@ dofile(modpath.."/tool_workshop.lua")
|
||||
dofile(modpath.."/music_player.lua")
|
||||
dofile(modpath.."/generator.lua")
|
||||
dofile(modpath.."/grinder.lua")
|
||||
dofile(modpath.."/cnc.lua")
|
||||
dofile(modpath.."/cnc_api.lua")
|
||||
dofile(modpath.."/cnc_nodes.lua")
|
||||
|
||||
--MV machines
|
||||
dofile(modpath.."/wires_mv.lua")
|
||||
@ -34,10 +39,13 @@ dofile(modpath.."/electric_furnace_mv.lua")
|
||||
dofile(modpath.."/alloy_furnace_mv.lua")
|
||||
dofile(modpath.."/forcefield.lua")
|
||||
|
||||
--HV machines
|
||||
dofile(modpath.."/wires_hv.lua")
|
||||
|
||||
--Tools
|
||||
if enable_mining_drill==true then dofile(modpath.."/mining_drill.lua") end
|
||||
if enable_mining_laser==true then dofile(modpath.."/mining_laser_mk1.lua") end
|
||||
if enable_flashlight==true then dofile(modpath.."/flashlight.lua") end
|
||||
if technic.config:getBool("enable_mining_drill") then dofile(modpath.."/mining_drill.lua") end
|
||||
if technic.config:getBool("enable_mining_laser") then dofile(modpath.."/mining_laser_mk1.lua") end
|
||||
if technic.config:getBool("enable_flashlight") then dofile(modpath.."/flashlight.lua") end
|
||||
dofile(modpath.."/cans.lua")
|
||||
dofile(modpath.."/chainsaw.lua")
|
||||
dofile(modpath.."/tree_tap.lua")
|
||||
|
Reference in New Issue
Block a user