mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2025-07-16 23:01:07 +02:00
Make blossom revert back to regular leaves
It didn't, so that all apple leaves would permanently become blossom over time.
This commit is contained in:
@ -36,7 +36,7 @@ minetest.register_abm({
|
||||
chance = nature.blossom_chance,
|
||||
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
nature.enqueue_node(pos, node, true)
|
||||
nature.enqueue_node(pos, node, nature.blossom_node)
|
||||
end
|
||||
})
|
||||
|
||||
@ -47,7 +47,7 @@ minetest.register_abm({
|
||||
chance = nature.blossom_chance,
|
||||
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
nature.enqueue_node(pos, node, false)
|
||||
nature.enqueue_node(pos, node, nature.blossom_leaves)
|
||||
end
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user