forked from mtcontrib/farming
fix eating of sunflower bread
This commit is contained in:
parent
f8533c415b
commit
b84374bfa5
@ -146,10 +146,12 @@ local def = {
|
|||||||
},
|
},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
growth_check = function(pos, node_name)
|
growth_check = function(pos, node_name)
|
||||||
|
|
||||||
if minetest.find_node_near(pos, 1, {"default:jungletree"}) then
|
if minetest.find_node_near(pos, 1, {"default:jungletree"}) then
|
||||||
return false
|
return false -- can grow
|
||||||
end
|
end
|
||||||
return true
|
|
||||||
|
return true -- cannot grow
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,11 +84,6 @@ minetest.register_craftitem("farming:sunflower_bread", {
|
|||||||
groups = {food_bread = 1, flammable = 2}
|
groups = {food_bread = 1, flammable = 2}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("farming:sunflower_bread", {
|
|
||||||
description = S("Sunflower Bread"),
|
|
||||||
inventory_image = "farming_sunflower_bread.png"
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:sunflower_bread",
|
output = "farming:sunflower_bread",
|
||||||
recipe = {{"group:food_sunflower_seeds_toasted", "group:food_bread", "group:food_sunflower_seeds_toasted"}}
|
recipe = {{"group:food_sunflower_seeds_toasted", "group:food_bread", "group:food_sunflower_seeds_toasted"}}
|
||||||
|
1
init.lua
1
init.lua
@ -340,7 +340,6 @@ function farming.plant_growth_timer(pos, elapsed, node_name)
|
|||||||
if max_growth == 1 or lambda < 2.0 then
|
if max_growth == 1 or lambda < 2.0 then
|
||||||
|
|
||||||
local light = (minetest.get_node_light(light_pos) or 0)
|
local light = (minetest.get_node_light(light_pos) or 0)
|
||||||
--print ("light level:", light)
|
|
||||||
|
|
||||||
if light < MIN_LIGHT or light > MAX_LIGHT then
|
if light < MIN_LIGHT or light > MAX_LIGHT then
|
||||||
return true
|
return true
|
||||||
|
Loading…
Reference in New Issue
Block a user