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),