Add food_* groups to default edibles (#2089)

This commit is contained in:
tenplus1
2018-04-04 09:59:15 +01:00
committed by SmallJoker
parent b0e55c52c8
commit 11b3407671
4 changed files with 6 additions and 6 deletions

View File

@ -330,7 +330,7 @@ farming.register_plant = function(name, def)
minetest.register_craftitem(":" .. mname .. ":" .. pname, {
description = pname:gsub("^%l", string.upper),
inventory_image = mname .. "_" .. pname .. ".png",
groups = {flammable = 2},
groups = def.groups or {flammable = 2},
})
-- Register growing steps

View File

@ -21,21 +21,21 @@ farming.register_plant("farming:wheat", {
minlight = 13,
maxlight = default.LIGHT_MAX,
fertility = {"grassland"},
groups = {flammable = 4},
groups = {food_wheat = 1, flammable = 4},
place_param2 = 3,
})
minetest.register_craftitem("farming:flour", {
description = "Flour",
inventory_image = "farming_flour.png",
groups = {flammable = 1},
groups = {food_flour = 1, flammable = 1},
})
minetest.register_craftitem("farming:bread", {
description = "Bread",
inventory_image = "farming_bread.png",
on_use = minetest.item_eat(5),
groups = {flammable = 2},
groups = {food_bread = 1, flammable = 2},
})
minetest.register_craft({