From 5376e7325206364cfb22471d3c2479f46ed65092 Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Sun, 14 Feb 2016 02:55:19 -0500 Subject: [PATCH] Fixes Plump Helmet Biscuits being uncookable The recipe for the plump helmet biscuit was mistakenly removed a while back (#535), this returns the recipe to the code Oven Recipe: 5u water, 5u flour, 1 plump helmet cap mushroom. :cl: fix: Fixes accidental removal of plump helmet biscuit recipe. /:cl: --- code/modules/food/recipes_oven.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/food/recipes_oven.dm b/code/modules/food/recipes_oven.dm index 914362ef45e..c94ffb3822c 100644 --- a/code/modules/food/recipes_oven.dm +++ b/code/modules/food/recipes_oven.dm @@ -254,6 +254,11 @@ ) result = /obj/item/weapon/reagent_containers/food/snacks/plump_pie +/datum/recipe/oven/plumphelmetbiscuit + fruit = list("plumphelmet" = 1) + reagents = list("water" = 5, "flour" = 5) + result = /obj/item/weapon/reagent_containers/food/snacks/plumphelmetbiscuit + /datum/recipe/oven/creamcheesebread items = list( /obj/item/weapon/reagent_containers/food/snacks/dough,