mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-04-04 05:11:27 +02:00
Did a bit of code restructuring.
Removed another magic number. Add in todo for fishing. Added in the possibility for bamboo to grow two nodes in one success. Added in a "force" param to use with bonemealing.
This commit is contained in:
@ -839,7 +839,9 @@ minetest.register_abm({
|
|||||||
nodenames = {bamboo},
|
nodenames = {bamboo},
|
||||||
interval = 40,
|
interval = 40,
|
||||||
chance = 40,
|
chance = 40,
|
||||||
action = mcl_bamboo.grow_bamboo,
|
action = function(pos, node)
|
||||||
|
mcl_bamboo.grow_bamboo(pos, node)
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Base Aliases.
|
-- Base Aliases.
|
||||||
|
Reference in New Issue
Block a user