2018-12-31 19:46:27 +01:00
|
|
|
df_farming = {}
|
|
|
|
|
2020-02-18 06:36:53 +01:00
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
local modpath = minetest.get_modpath(modname)
|
2018-12-31 19:46:27 +01:00
|
|
|
|
|
|
|
--load companion lua files
|
|
|
|
dofile(modpath.."/config.lua")
|
|
|
|
dofile(modpath.."/doc.lua")
|
|
|
|
dofile(modpath.."/aliases.lua")
|
|
|
|
|
|
|
|
dofile(modpath.."/plants.lua") -- general functions
|
2023-02-05 04:42:54 +01:00
|
|
|
dofile(modpath.."/growth_conditions.lua")
|
2018-12-31 19:46:27 +01:00
|
|
|
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")
|