From 4b70e29e36b46df9bc6ad602f0c7feec6842e8dd Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 20 Jul 2020 19:42:07 +0100 Subject: [PATCH] let the fry smite work --- code/modules/food_and_drinks/food/snacks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)