From 96d21c2e313e8fdd1e24aaee990c1dcfe48d7d46 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 17 Oct 2020 20:20:20 +0200 Subject: [PATCH] [MIRROR] Rags fixes for smothering (#1351) * Rags fixes for smothering (#54428) Makes it so that the rag can be used to transfer reagents to a carbon again. The check was set to does the carbon have any reagents when it should have een does the rag have reagents. * Rags fixes for smothering Co-authored-by: NightRed --- code/modules/detectivework/footprints_and_rag.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/detectivework/footprints_and_rag.dm b/code/modules/detectivework/footprints_and_rag.dm index 575006c8439..1754347b82a 100644 --- a/code/modules/detectivework/footprints_and_rag.dm +++ b/code/modules/detectivework/footprints_and_rag.dm @@ -24,7 +24,7 @@ . = ..() if(!proximity) return - if(iscarbon(A) && A.reagents?.total_volume) + if(iscarbon(A) && reagents?.total_volume) var/mob/living/carbon/C = A var/reagentlist = pretty_string_from_reagent_list(reagents) var/log_object = "containing [reagentlist]"