forked from mtcontrib/bonemeal
use 1x bonemeal item with every sapling chance
This commit is contained in:
parent
8e929e5a1c
commit
c4ac6f8490
9
init.lua
9
init.lua
@ -86,7 +86,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
-- sapling check
|
-- sapling check
|
||||||
local function check_sapling(pos, sapling_node, light_ok)
|
local function check_sapling(pos, sapling_node, strength, light_ok)
|
||||||
|
|
||||||
-- what is sapling placed on?
|
-- what is sapling placed on?
|
||||||
local under = minetest.get_node({
|
local under = minetest.get_node({
|
||||||
@ -128,7 +128,9 @@ local function check_sapling(pos, sapling_node, light_ok)
|
|||||||
|
|
||||||
particle_effect(pos)
|
particle_effect(pos)
|
||||||
|
|
||||||
grow_tree(pos, saplings[n][2])
|
if math.random(5 - strength) == 1 then
|
||||||
|
grow_tree(pos, saplings[n][2])
|
||||||
|
end
|
||||||
|
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
@ -474,8 +476,7 @@ function bonemeal:on_use(pos, strength, node)
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- check for sapling growth
|
-- check for sapling growth
|
||||||
if random(5 - strength) == 1
|
if check_sapling(pos, node.name, strength, light_ok) then
|
||||||
and check_sapling(pos, node.name, light_ok) then
|
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# textdomain:bonemeal
|
# textdomain:bonemeal
|
||||||
[MOD] bonemeal loaded=[MOD] bonemeal geladen
|
|
||||||
Bone=Knochen
|
Bone=Knochen
|
||||||
Bone Meal=Knochenmehl
|
Bone Meal=Knochenmehl
|
||||||
Fertiliser=Dünger
|
Fertiliser=Dünger
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# textdomain:bonemeal
|
# textdomain:bonemeal
|
||||||
#[MOD] bonemeal loaded=
|
|
||||||
#Bone=
|
#Bone=
|
||||||
#Bone Meal=
|
#Bone Meal=
|
||||||
#Fertiliser=
|
#Fertiliser=
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# textdomain:bonemeal
|
# textdomain:bonemeal
|
||||||
[MOD] bonemeal loaded=[MOD] bonemeal cargado
|
|
||||||
Bone=Hueso
|
Bone=Hueso
|
||||||
Bone Meal=Comida de hueso
|
Bone Meal=Comida de hueso
|
||||||
Fertiliser=Fertilizante
|
Fertiliser=Fertilizante
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# textdomain:bonemeal
|
# textdomain:bonemeal
|
||||||
[MOD] bonemeal loaded=[MOD] bonemeal chargé
|
|
||||||
Bone=Os
|
Bone=Os
|
||||||
Bone Meal=Poudre d'os
|
Bone Meal=Poudre d'os
|
||||||
Fertiliser=Engrais
|
Fertiliser=Engrais
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# textdomain:bonemeal
|
# textdomain:bonemeal
|
||||||
[MOD] bonemeal loaded=[MOD] bonemeal caricata
|
|
||||||
Bone=Ossa
|
Bone=Ossa
|
||||||
Bone Meal=Pasto osseo
|
Bone Meal=Pasto osseo
|
||||||
Fertiliser=Fertilizzante
|
Fertiliser=Fertilizzante
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# textdomain:bonemeal
|
# textdomain:bonemeal
|
||||||
[MOD] bonemeal loaded=[MOD] костная мука загружена
|
|
||||||
Bone=Кость
|
Bone=Кость
|
||||||
Bone Meal=Костная Мука
|
Bone Meal=Костная Мука
|
||||||
Fertiliser=Удобрение
|
Fertiliser=Удобрение
|
||||||
|
Loading…
Reference in New Issue
Block a user