Add files via upload
This commit is contained in:
20
init.lua
Normal file
20
init.lua
Normal 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]]--
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user