From 588469a5a5547afb9bf6ff8d9ce37b63fe4ccfb7 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Tue, 8 Apr 2025 09:23:19 -0400 Subject: [PATCH] fix broken nettle soup recipe (#28924) * fix broken nettle soup recipe * fix moffins too --- code/modules/cooking/recipes/oven_recipes.dm | 2 +- code/modules/cooking/recipes/stove_recipes.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/cooking/recipes/oven_recipes.dm b/code/modules/cooking/recipes/oven_recipes.dm index 20148faffae..708785f1c35 100644 --- a/code/modules/cooking/recipes/oven_recipes.dm +++ b/code/modules/cooking/recipes/oven_recipes.dm @@ -716,7 +716,7 @@ catalog_category = COOKBOOK_CATEGORY_DESSERTS steps = list( PCWJ_ADD_ITEM(/obj/item/food/dough), - PCWJ_ADD_PRODUCE(/obj/item/grown/cotton), + PCWJ_ADD_ITEM(/obj/item/grown/cotton), PCWJ_ADD_REAGENT("milk", 5), PCWJ_ADD_REAGENT("sugar", 5), PCWJ_USE_OVEN(J_MED, 10 SECONDS), diff --git a/code/modules/cooking/recipes/stove_recipes.dm b/code/modules/cooking/recipes/stove_recipes.dm index 175efe54d91..46c59e3c919 100644 --- a/code/modules/cooking/recipes/stove_recipes.dm +++ b/code/modules/cooking/recipes/stove_recipes.dm @@ -255,7 +255,7 @@ catalog_category = COOKBOOK_CATEGORY_SOUPS steps = list( PCWJ_ADD_ITEM(/obj/item/food/egg), - PCWJ_ADD_PRODUCE(/obj/item/grown/nettle/basic), + PCWJ_ADD_ITEM(/obj/item/grown/nettle/basic), PCWJ_ADD_PRODUCE(/obj/item/food/grown/potato), PCWJ_ADD_REAGENT("water", 10), PCWJ_USE_STOVE(J_MED, 20 SECONDS),