From 8d409806501ceef83d55b13baf1a99f9ec58ded7 Mon Sep 17 00:00:00 2001 From: CHOMPStation2 <58959929+CHOMPStation2@users.noreply.github.com> Date: Fri, 29 Dec 2023 17:48:17 -0700 Subject: [PATCH] [MIRROR] fixes unusable grill recipes (#7471) Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: CHOMPStation2 --- .../food/kitchen/cooking_machines/container.dm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/code/modules/food/kitchen/cooking_machines/container.dm b/code/modules/food/kitchen/cooking_machines/container.dm index fa6a5fea62..ca5a9dd120 100644 --- a/code/modules/food/kitchen/cooking_machines/container.dm +++ b/code/modules/food/kitchen/cooking_machines/container.dm @@ -193,7 +193,6 @@ // We add to the insertable list specifically for the oven trays, to allow specialty cakes. insertable += list( - /obj/item/clothing/head/cakehat, // This is because we want to allow birthday cakes to be makeable. /obj/item/organ/internal/brain // As before, needed for braincake ) @@ -208,3 +207,15 @@ shortname = "rack" desc = "Put ingredients 'in'/on this; designed for use with a grill. Warranty void if used incorrectly. Alt click to remove contents." icon_state = "grillrack" + +/obj/item/weapon/reagent_containers/cooking_container/grill/Initialize() + . = ..() + + // Needed for the special recipes of the grill + insertable += list( + /obj/item/organ/internal/brain, + /obj/item/robot_parts/head, + /obj/item/weapon/ectoplasm, + /obj/item/weapon/holder/mouse, + /obj/item/stack/rods + )