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)