move CNC machine into its own mod

This commit is contained in:
Vanessa Dannenberg
2018-11-25 06:54:27 -05:00
committed by Nathanaël Courant
parent 51d7bd81ff
commit dc0689018d
59 changed files with 173 additions and 165 deletions

13
technic_cnc/init.lua Normal file
View File

@ -0,0 +1,13 @@
local modpath = minetest.get_modpath("technic_cnc")
technic_cnc = {}
if rawget(_G, "intllib") then
technic_cnc.getter = intllib.Getter()
else
technic_cnc.getter = function(s,a,...)if a==nil then return s end a={a,...}return s:gsub("(@?)@(%(?)(%d+)(%)?)",function(e,o,n,c)if e==""then return a[tonumber(n)]..(o==""and c or"")else return"@"..o..n..c end end) end
end
dofile(modpath.."/cnc.lua")
dofile(modpath.."/cnc_api.lua")
dofile(modpath.."/cnc_materials.lua")