146d50bcb1
Right now, the growth timing is purely stochastic, and does not factor in environment, light, space, or cumulative time.
17 lines
540 B
Lua
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")
|