add {drink=1} to cactus pulp and mushroom soup

master
TenPlus1 2020-06-30 20:12:18 +01:00
parent 064ed0c453
commit fc576d1c76
2 changed files with 29 additions and 27 deletions

View File

@ -194,6 +194,7 @@ minetest.register_craftitem("ethereal:bucket_cactus", {
inventory_image = "bucket_cactus.png",
wield_image = "bucket_cactus.png",
stack_max = 1,
groups = {vessel = 1, drink = 1},
on_use = minetest.item_eat(2, "bucket:bucket_empty"),
})

View File

@ -5,6 +5,7 @@ local S = ethereal.intllib
minetest.register_craftitem("ethereal:mushroom_soup", {
description = S("Mushroom Soup"),
inventory_image = "mushroom_soup.png",
groups = {drink = 1},
on_use = minetest.item_eat(5, "ethereal:bowl"),
})