summaryrefslogtreecommitdiff
path: root/technic_cnc/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic_cnc/init.lua')
-rw-r--r--technic_cnc/init.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/technic_cnc/init.lua b/technic_cnc/init.lua
new file mode 100644
index 0000000..3c4da3e
--- /dev/null
+++ b/technic_cnc/init.lua
@@ -0,0 +1,18 @@
+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_materials.lua")