Adjust bamboo growth rates to be close to the MC wiki.

This commit is contained in:
Michieal 2023-01-16 15:01:38 -05:00
parent e9c202ae45
commit b805ae9926
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ dofile(minetest.get_modpath(modname) .. "/recipes.lua")
--ABMs --ABMs
minetest.register_abm({ minetest.register_abm({
nodenames = mcl_bamboo.bamboo_index, nodenames = mcl_bamboo.bamboo_index,
interval = 31.5, interval = 10,
chance = 40, chance = 20,
action = function(pos, _) action = function(pos, _)
mcl_bamboo.grow_bamboo(pos, false) mcl_bamboo.grow_bamboo(pos, false)
end, end,