mirror of
https://codeberg.org/tenplus1/bonemeal.git
synced 2025-01-08 01:00:25 +01:00
fix strength bug
This commit is contained in:
parent
e017406a10
commit
9c335b0029
4
init.lua
4
init.lua
@ -460,8 +460,8 @@ function bonemeal:on_use(pos, strength, node)
|
||||
end
|
||||
|
||||
-- check for tree growth if pointing at sapling
|
||||
-- if minetest.get_item_group(node.name, "sapling") > 0
|
||||
if random(5 - strength) == 1 then
|
||||
if minetest.get_item_group(node.name, "sapling") > 0
|
||||
and random(5 - strength) == 1 then
|
||||
check_sapling(pos, node.name)
|
||||
return
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user