mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-13 22:20:28 +01:00
882395ef75
Split this mod into a set of sub-mods in a modpack, and in the process did a whole bunch of renovations. * updated Subterrane's API to allow for more patterned placement of things * added "warrens" * clean separation of flooded and non-flooded caverns * rearranged biomes to make cavern layers more distinct * added oil layer * added underworld layer
19 lines
547 B
Lua
19 lines
547 B
Lua
df_farming = {}
|
|
|
|
--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.."/plants.lua") -- general functions
|
|
dofile(modpath.."/cave_wheat.lua")
|
|
dofile(modpath.."/dimple_cup.lua")
|
|
dofile(modpath.."/pig_tail.lua")
|
|
dofile(modpath.."/plump_helmet.lua")
|
|
dofile(modpath.."/quarry_bush.lua")
|
|
dofile(modpath.."/sweet_pod.lua")
|
|
dofile(modpath.."/cooking.lua")
|