Aaron Suen 146d50bcb1 Very basic tree growth from EggCorns.
Right now, the growth timing is purely stochastic, and does not
factor in environment, light, space, or cumulative time.
2018-11-03 12:55:26 -04:00

17 lines
540 B
Lua

-- LUALOCALS < ---------------------------------------------------------
local dofile, minetest, nodecore
= dofile, minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
nodecore.register_leaf_drops, nodecore.registered_leaf_drops
= nodecore.mkreg()
local modname = minetest.get_current_modname()
local path = minetest.get_modpath(modname)
dofile(path .. "/node.lua")
dofile(path .. "/sticks.lua")
dofile(path .. "/schematic.lua")
dofile(path .. "/decor.lua")
dofile(path .. "/cultivation.lua")