removed unused group from pea soup

This commit is contained in:
TenPlus1 2018-03-21 22:10:52 +00:00
parent 2bcc920a4b
commit 1b8c647f4b
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t
Changelog:
1.33 - Added cooking utensils (wooden bowl, saucepan, cooking pot, baking tray, skillet, cutting board, mortar & pestle, glass mixing bowl) for easier food crafts.
1.33 - Added cooking utensils (wooden bowl, saucepan, cooking pot, baking tray, skillet, cutting board, mortar & pestle, juicer, glass mixing bowl) for easier food crafts.
1.32 - Added Pea plant (textures by Andrey01) - also added Wooden Bowl and Pea Soup crafts
1.31 - Added Pineapple which can be found growing in savannah areas (place pineapple in crafting to obtain 5x rings to eat and a top for re-planting), also Salt which is made from cooking a bucket of water, added food groups so it's more compatible with Ruben's food mods.
1.30 - Added Garlic, Pepper and Onions thanks to Grizzly Adam for sharing textures

View File

@ -30,7 +30,7 @@ minetest.register_craft({
minetest.register_craftitem("farming:pea_soup", {
description = S("Pea Soup"),
inventory_image = "farming_pea_soup.png",
groups = {food_peas = 1, flammable = 2},
groups = {flammable = 2},
on_use = minetest.item_eat(4, "farming:bowl"),
})