Add files via upload

This commit is contained in:
minefaco
2020-11-08 22:32:54 -05:00
committed by GitHub
parent 7c33ab0ce9
commit 7ec025b04c
4 changed files with 158 additions and 0 deletions

20
init.lua Normal file
View File

@@ -0,0 +1,20 @@
-- 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]]--