From 78a38feaa598ccfc555f2652521bb958905e8e10 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Thu, 1 May 2025 13:09:15 -0400 Subject: [PATCH] fix too-long oven recipes (#29182) --- code/modules/cooking/recipes/oven_recipes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/cooking/recipes/oven_recipes.dm b/code/modules/cooking/recipes/oven_recipes.dm index 708785f1c35..a44f96455fa 100644 --- a/code/modules/cooking/recipes/oven_recipes.dm +++ b/code/modules/cooking/recipes/oven_recipes.dm @@ -358,7 +358,7 @@ PCWJ_ADD_PRODUCE(/obj/item/food/grown/banana), PCWJ_ADD_REAGENT("milk", 5), PCWJ_ADD_REAGENT("sugar", 15), - PCWJ_USE_OVEN(J_MED, 50 SECONDS), + PCWJ_USE_OVEN(J_MED, 30 SECONDS), ) /datum/cooking/recipe/cookies @@ -618,7 +618,7 @@ PCWJ_ADD_PRODUCE(/obj/item/food/grown/berries), PCWJ_ADD_REAGENT("milk", 5), PCWJ_ADD_REAGENT("sugar", 15), - PCWJ_USE_OVEN(J_MED, 50 SECONDS), + PCWJ_USE_OVEN(J_MED, 30 SECONDS), ) /datum/cooking/recipe/limecake