mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 05:30:05 +01:00
[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:
@@ -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]"
|
||||
|
||||
Reference in New Issue
Block a user