[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 <nightred@gmail.com>
This commit is contained in:
SkyratBot
2020-10-17 19:20:20 +01:00
committed by GitHub
co-authored by NightRed
parent 3cdec4d2af
commit 96d21c2e31
@@ -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]"