From be2cdeb261e8af35deee7a0df85fedebfcf060f7 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Wed, 16 Oct 2024 12:37:33 -0400 Subject: [PATCH] fixes deepfrier / cereal maker not transfering reagents (#27123) --- code/modules/food_and_drinks/kitchen_machinery/cooker.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/food_and_drinks/kitchen_machinery/cooker.dm b/code/modules/food_and_drinks/kitchen_machinery/cooker.dm index 08f662b9ad8..9dad856f762 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/cooker.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/cooker.dm @@ -237,6 +237,7 @@ if(istype(I, /obj/item/reagent_containers)) setRegents(I, newfood) if(istype(I, /obj/item/food)) + setRegents(I, newfood) setCooked(I, newfood) newfood.cooktype[thiscooktype] = TRUE turnoff(I)