mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-14 14:30:44 +01:00
18 lines
494 B
Lua
18 lines
494 B
Lua
local modpath = minetest.get_modpath("technic_compat")
|
|
|
|
-- Compatibility table
|
|
technic_compat = {}
|
|
|
|
technic_compat.mcl = minetest.get_modpath("mcl_core")
|
|
technic_compat.default = minetest.get_modpath("default") and default or {}
|
|
|
|
local mcl_path = modpath .. "/mcl/"
|
|
|
|
-- Load files
|
|
dofile(mcl_path .. "sounds.lua")
|
|
dofile(mcl_path .. "textures.lua")
|
|
dofile(mcl_path .. "miscellaneous.lua")
|
|
dofile(mcl_path .. "fluids.lua")
|
|
dofile(mcl_path .. "crafting.lua")
|
|
dofile(mcl_path .. "craftguide.lua")
|