Stops sleepers from runtiming when attempting to dialysis (#22398)

* How did nobody see this including me

* IV bags too

* Oops
This commit is contained in:
DGamerL
2023-09-14 22:06:29 +02:00
committed by GitHub
parent 0e3677fd15
commit 859a38cde2
2 changed files with 3 additions and 5 deletions

View File

@@ -75,8 +75,7 @@
if(reagents.total_volume < reagents.maximum_volume)
injection_target.transfer_blood_to(src, amount_per_transfer_from_this)
for(var/datum/reagent/x in injection_target.reagents.reagent_list) // Pull small amounts of reagents from the person while drawing blood
var/datum/reagent/R
if(R.id in GLOB.blocked_chems)
if(x.id in GLOB.blocked_chems)
continue
injection_target.reagents.trans_to(src, amount_per_transfer_from_this/10)
update_icon(UPDATE_OVERLAYS)