2018-12-31 19:46:27 +01:00
|
|
|
df_farming = {}
|
|
|
|
|
2020-02-18 06:36:53 +01:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
df_farming.S = minetest.get_translator(modname)
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
2018-12-31 19:46:27 +01:00
|
|
|
|
|
|
|
--load companion lua files
|
|
|
|
dofile(modpath.."/config.lua")
|
2020-11-15 23:37:42 +01:00
|
|
|
dofile(modpath.."/dependencies.lua")
|
2018-12-31 19:46:27 +01:00
|
|
|
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")
|