diff --git a/code/datums/components/food/edible.dm b/code/datums/components/food/edible.dm index 783ac607ac5..be2352a17f5 100644 --- a/code/datums/components/food/edible.dm +++ b/code/datums/components/food/edible.dm @@ -369,9 +369,10 @@ Behavior that's still missing from this component that original food items had t if(!ishuman(M)) return FALSE var/mob/living/carbon/human/H = M - if(HAS_TRAIT(H, TRAIT_AGEUSIA) && foodtypes & H.dna.species.toxic_food) - to_chat(H, "You don't feel so good...") - H.adjust_disgust(25 + 30 * fraction) + if(HAS_TRAIT(H, TRAIT_AGEUSIA)) + if(foodtypes & H.dna.species.toxic_food) + to_chat(H, "You don't feel so good...") + H.adjust_disgust(25 + 30 * fraction) else if(foodtypes & H.dna.species.toxic_food) to_chat(H,"What the hell was that thing?!")