From 6a08c3b626cdade22fe8c458016fe978d2a7fc2d Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Mon, 23 May 2022 01:04:59 -0700 Subject: [PATCH] Silver slime food is now toxic(causes disgust when eaten), as it's not real food. (#67181) Silver slime food is now toxic, as it's not real food. --- code/datums/components/food/edible.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/components/food/edible.dm b/code/datums/components/food/edible.dm index 0617b53744c..3ffb8824f3d 100644 --- a/code/datums/components/food/edible.dm +++ b/code/datums/components/food/edible.dm @@ -452,6 +452,8 @@ 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 switch(food_taste_reaction) if(FOOD_TOXIC)