From 6e6f5586381712553f44d69cd0a403bef8bbfc8a Mon Sep 17 00:00:00 2001 From: atermonera Date: Sun, 12 Sep 2021 12:06:29 -0800 Subject: [PATCH] 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 d4d71d5f3c..c6cf642f8a 100644 --- a/code/datums/components/crafting/crafting.dm +++ b/code/datums/components/crafting/crafting.dm @@ -344,7 +344,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