mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-10 20:40:38 +01:00
21 lines
609 B
Lua
21 lines
609 B
Lua
df_farming = {}
|
|
|
|
local modname = minetest.get_current_modname()
|
|
df_farming.S = minetest.get_translator(modname)
|
|
local modpath = minetest.get_modpath(modname)
|
|
|
|
--load companion lua files
|
|
dofile(modpath.."/config.lua")
|
|
dofile(modpath.."/dependencies.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")
|