diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm index 3c26ff7048..adb8e47c94 100644 --- a/code/modules/food_and_drinks/food/snacks.dm +++ b/code/modules/food_and_drinks/food/snacks.dm @@ -414,5 +414,5 @@ All foods are distributed among various categories. Use common sense. var/obj/item/fried_item = src if(fried_item.resistance_flags & INDESTRUCTIBLE) return - if(!GetComponent(/datum/component/fried) && (!reagents || isfood(src))) + if(!GetComponent(/datum/component/fried) && (!reagents || isfood(src) || ismob(src))) AddComponent(/datum/component/fried, frying_power = cook_time)