From 1b8c647f4b172d3a41aa165fd591aa0f3e819aa0 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Wed, 21 Mar 2018 22:10:52 +0000 Subject: [PATCH] removed unused group from pea soup --- README.txt | 2 +- pea.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.txt b/README.txt index 957c11b..896aaa4 100644 --- a/README.txt +++ b/README.txt @@ -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 diff --git a/pea.lua b/pea.lua index ecf296c..ef14dab 100644 --- a/pea.lua +++ b/pea.lua @@ -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"), })