From 968a937bd39dac7ddf4d3758effffb2cb3f9f39c Mon Sep 17 00:00:00 2001 From: Jack Edge Date: Sun, 19 Feb 2023 20:58:56 +0000 Subject: [PATCH] Fix eating the bowl when eating poke (#73524) :cl: coiax fix: Eating fish and meat poke bowls no longer consumes the bowl, just the food inside. /:cl: ## 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. --- code/game/objects/items/food/meatdish.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/food/meatdish.dm b/code/game/objects/items/food/meatdish.dm index 75a47d1896c..1a38b535208 100644 --- a/code/game/objects/items/food/meatdish.dm +++ b/code/game/objects/items/food/meatdish.dm @@ -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////////////////////////////////////////////