Skip to content

Commit

Permalink
Add food_* groups to default edibles (#2089)
Browse files Browse the repository at this point in the history
  • Loading branch information
tenplus1 authored and SmallJoker committed Apr 4, 2018
1 parent b0e55c5 commit 11b3407
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mods/default/nodes.lua
Expand Up @@ -699,7 +699,7 @@ minetest.register_node("default:apple", {
fixed = {-3 / 16, -7 / 16, -3 / 16, 3 / 16, 4 / 16, 3 / 16}
},
groups = {fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 3, leafdecay_drop = 1},
leafdecay = 3, leafdecay_drop = 1, food_apple = 1},
on_use = minetest.item_eat(2),
sounds = default.node_sound_leaves_defaults(),
Expand Down
2 changes: 1 addition & 1 deletion mods/farming/api.lua
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions mods/farming/init.lua
Expand Up @@ -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({
Expand Down
2 changes: 1 addition & 1 deletion mods/flowers/init.lua
Expand Up @@ -212,7 +212,7 @@ minetest.register_node("flowers:mushroom_brown", {
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, attached_node = 1, flammable = 1},
groups = {food_mushroom = 1, snappy = 3, attached_node = 1, flammable = 1},
sounds = default.node_sound_leaves_defaults(),
on_use = minetest.item_eat(1),
selection_box = {
Expand Down

0 comments on commit 11b3407

Please sign in to comment.