2018-11-25 14:54:27 +03:00
|
|
|
local modpath = minetest.get_modpath("technic_cnc")
|
|
|
|
|
|
|
|
technic_cnc = {}
|
|
|
|
|
2018-11-25 16:13:56 +03:00
|
|
|
technic_cnc.technic_modpath = minetest.get_modpath("technic")
|
2024-04-28 19:41:52 +03:00
|
|
|
technic_cnc.getter = minetest.get_translator("technic_cnc")
|
2018-11-25 16:13:56 +03:00
|
|
|
|
|
|
|
technic_cnc.use_technic = technic_cnc.technic_modpath
|
|
|
|
and minetest.settings:get_bool("technic_cnc_use_technic") ~= false
|
|
|
|
|
2018-11-25 14:54:27 +03:00
|
|
|
|
|
|
|
dofile(modpath.."/cnc.lua")
|
|
|
|
dofile(modpath.."/cnc_api.lua")
|
|
|
|
dofile(modpath.."/cnc_materials.lua")
|