mirror of
https://github.com/minefaco/stripped_tree.git
synced 2024-11-19 22:13:50 +01:00
21 lines
374 B
Lua
21 lines
374 B
Lua
-- get modpath
|
|
local mpath = minetest.get_modpath("chisel_tree")
|
|
|
|
-- load functions
|
|
dofile(mpath .. "/functions.lua")
|
|
|
|
--load default
|
|
dofile(mpath .. "/default.lua")
|
|
|
|
--load optional dependencies
|
|
if minetest.get_modpath("moretrees") then
|
|
dofile(mpath .. "/moretrees.lua")
|
|
end
|
|
--[[
|
|
if minetest.get_modpath("ethereal") then
|
|
dofile(mpath .. "/ethereal.lua")
|
|
end]]--
|
|
|
|
|
|
|