From a0debb7751c6f2cd56b92c3d5ae0e6fecedcec70 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 24 Oct 2021 20:08:17 -0400 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 cada2fadefb..6e0a3bfdc59 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