From bf38a3d4e24381c5d19bbb13d861b10eb631e97f Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 11 Jan 2023 16:47:42 +0100 Subject: [PATCH] [MIRROR] Fixes Black Carpet and Paper Frames crafting recipes only giving you 1 item in return. [MDB IGNORE] (#18500) * Fixes Black Carpet and Paper Frames crafting recipes only giving you 1 item in return. * Update recipes.dm Co-authored-by: ShizCalev Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> --- code/datums/components/crafting/recipes.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index 4259c27e9be..5e143dd5bdc 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -785,7 +785,8 @@ /datum/crafting_recipe/paperframes name = "Paper Frames" - result = /obj/item/stack/sheet/paperframes/five + result = /obj/item/stack/sheet/paperframes + result_amount = 5 time = 1 SECONDS reqs = list(/obj/item/stack/sheet/mineral/wood = 5, /obj/item/paper = 20) category = CAT_STRUCTURE @@ -814,7 +815,8 @@ /datum/crafting_recipe/blackcarpet name = "Black Carpet" reqs = list(/obj/item/stack/tile/carpet = 50, /obj/item/toy/crayon/black = 1) - result = /obj/item/stack/tile/carpet/black/fifty + result = /obj/item/stack/tile/carpet/black + result_amount = 50 category = CAT_TILES /datum/crafting_recipe/curtain