mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-19 08:40:39 +01:00
20 lines
713 B
Lua
20 lines
713 B
Lua
local modpath = minetest.get_modpath("technic_cnc")
|
|
|
|
technic_cnc = {}
|
|
|
|
technic_cnc.technic_modpath = minetest.get_modpath("technic")
|
|
|
|
technic_cnc.use_technic = technic_cnc.technic_modpath
|
|
and minetest.settings:get_bool("technic_cnc_use_technic") ~= false
|
|
|
|
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_nodes.lua")
|
|
dofile(modpath.."/cnc_materials.lua")
|