mirror of
https://github.com/rubenwardy/food.git
synced 2025-01-08 23:50:17 +01:00
Make bowls work as food_cup as well as food_bowls.
Else no juices can be crafted.
This commit is contained in:
parent
e4b9ff0373
commit
34f101e0d2
4
init.lua
4
init.lua
@ -415,7 +415,7 @@ food.craft({
|
|||||||
minetest.register_craftitem("food:bowl",{
|
minetest.register_craftitem("food:bowl",{
|
||||||
description = S("Bowl"),
|
description = S("Bowl"),
|
||||||
inventory_image = "food_bowl.png",
|
inventory_image = "food_bowl.png",
|
||||||
groups = {food_bowl=1}
|
groups = {food_bowl=1, food_cup=1}
|
||||||
})
|
})
|
||||||
food.craft({
|
food.craft({
|
||||||
output = "food:bowl",
|
output = "food:bowl",
|
||||||
@ -636,7 +636,7 @@ minetest.register_node("food:cake_carrot", {
|
|||||||
food.craft({
|
food.craft({
|
||||||
type = "cooking",
|
type = "cooking",
|
||||||
output = "food:cake",
|
output = "food:cake",
|
||||||
recipe = "food:cakemix_plain",
|
recipe = "food:cakemix_plain",f
|
||||||
cooktime = 10,
|
cooktime = 10,
|
||||||
})
|
})
|
||||||
food.craft({
|
food.craft({
|
||||||
|
Loading…
Reference in New Issue
Block a user