From 5aa4d2b2102fb27b0ed4f2cd07b123155f2fdb7a Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:29:09 +0200 Subject: [PATCH] [MIRROR] Silver slime extract created food isn't toxic to jellypeople [MDB IGNORE] (#16975) * Silver slime extract created food isn't toxic to jellypeople (#70424) * Silver slime extract created food isn't toxic to jellypeople Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/datums/components/food/edible.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/components/food/edible.dm b/code/datums/components/food/edible.dm index 92c6b968365..97583ef0baf 100644 --- a/code/datums/components/food/edible.dm +++ b/code/datums/components/food/edible.dm @@ -484,8 +484,9 @@ Behavior that's still missing from this component that original food items had t food_taste_reaction = FOOD_DISLIKED else if(foodtypes & H.dna.species.liked_food) food_taste_reaction = FOOD_LIKED + if(food_flags & FOOD_SILVER_SPAWNED) // it's not real food - food_taste_reaction = FOOD_TOXIC + food_taste_reaction = isjellyperson(H) ? FOOD_LIKED : FOOD_TOXIC switch(food_taste_reaction) if(FOOD_TOXIC)