mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-19 00:40:31 +01:00
21 lines
549 B
Lua
21 lines
549 B
Lua
|
dfcaverns = {}
|
||
|
|
||
|
--grab a shorthand for the filepath of the mod
|
||
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
||
|
|
||
|
--load companion lua files
|
||
|
dofile(modpath.."/config.lua")
|
||
|
|
||
|
dofile(modpath.."/ground_cover.lua")
|
||
|
dofile(modpath.."/plants.lua")
|
||
|
|
||
|
-- Trees
|
||
|
dofile(modpath.."/blood_thorn.lua")
|
||
|
dofile(modpath.."/fungiwood.lua")
|
||
|
dofile(modpath.."/tunnel_tube.lua")
|
||
|
dofile(modpath.."/spore_tree.lua")
|
||
|
dofile(modpath.."/black_cap.lua")
|
||
|
dofile(modpath.."/nether_cap.lua")
|
||
|
dofile(modpath.."/goblin_cap.lua")
|
||
|
dofile(modpath.."/tower_cap.lua")
|