From e5aae33ca0f1bc8d731ffea347812b83d6090201 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 24 Oct 2021 20:24:49 -0400 Subject: [PATCH 1/2] Merge pull request #11599 from VOREStation/upstream-merge-8296 [MIRROR] fixes crafting reqs not storing parts in the result --- code/datums/components/crafting/crafting.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/crafting/crafting.dm b/code/datums/components/crafting/crafting.dm index cada2fadef..6e0a3bfdc5 100644 --- a/code/datums/components/crafting/crafting.dm +++ b/code/datums/components/crafting/crafting.dm @@ -347,7 +347,7 @@ amt-- // Prepare to stuff inside product, don't delete it - if(is_path_in_list(path_key, parts)) + if(is_path_in_list(path_key, R.parts)) parts["items"] += I amt_to_transfer-- continue