From 82f7550ca3bfb9ec7fa4436f8acce8bf5b17b671 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Mon, 23 May 2022 12:50:32 +0200 Subject: [PATCH] [MIRROR] Silver slime food is now toxic(causes disgust when eaten), as it's not real food. [MDB IGNORE] (#13824) * 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. * Silver slime food is now toxic(causes disgust when eaten), as it's not real food. Co-authored-by: Iamgoofball --- 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)