mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-05 01:50:43 +01:00
20 lines
540 B
Lua
20 lines
540 B
Lua
|
df_mapitems = {}
|
||
|
|
||
|
--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.."/doc.lua")
|
||
|
dofile(modpath.."/aliases.lua")
|
||
|
|
||
|
dofile(modpath.."/ground_cover.lua")
|
||
|
dofile(modpath.."/glow_worms.lua")
|
||
|
dofile(modpath.."/flowstone.lua")
|
||
|
dofile(modpath.."/snareweed.lua")
|
||
|
dofile(modpath.."/cave_coral.lua")
|
||
|
|
||
|
dofile(modpath.."/crystals_mese.lua")
|
||
|
dofile(modpath.."/crystals_ruby.lua")
|
||
|
|
||
|
dofile(modpath.."/veinstone.lua")
|