Fix eating the bowl when eating poke (#73524)

🆑 coiax
fix: Eating fish and meat poke bowls no longer consumes the bowl, just
the food inside.
/🆑

## Why It's Good For The Game

Those bowls are made out of glass in the protolathe, they can't be good
for you to eat. Also, soups leave the bowl behind.
This commit is contained in:
Jack Edge
2023-02-19 13:58:56 -07:00
committed by GitHub
parent bddeacd8d3
commit 968a937bd3
+4 -2
View File
@@ -226,8 +226,9 @@
/datum/reagent/consumable/nutriment/vitamin = 5,
/datum/reagent/consumable/nutriment/protein = 2,
)
tastes = list("rice and meat" = 4, "lettuce" = 2, "soy sauce" = 2)
foodtypes = SEAFOOD | MEAT | VEGETABLES
tastes = list("rice and meat" = 4, "lettuce" = 2, "soy sauce" = 2)
trash_type = /obj/item/reagent_containers/cup/bowl
w_class = WEIGHT_CLASS_SMALL
/obj/item/food/fish_poke
@@ -240,8 +241,9 @@
/datum/reagent/consumable/nutriment/vitamin = 4,
/datum/reagent/consumable/nutriment/protein = 2,
)
tastes = list("rice and fish" = 4, "lettuce" = 2, "soy sauce" = 2)
foodtypes = SEAFOOD | VEGETABLES
tastes = list("rice and fish" = 4, "lettuce" = 2, "soy sauce" = 2)
trash_type = /obj/item/reagent_containers/cup/bowl
w_class = WEIGHT_CLASS_SMALL
////////////////////////////////////////////MEATS AND ALIKE////////////////////////////////////////////