From dbeb31cd888b8b1023f504fa3408f64f211b7661 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 11 Dec 2015 23:07:00 -0500 Subject: [PATCH] Fixes Antihol --- code/modules/reagents/newchem/medicine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/newchem/medicine.dm b/code/modules/reagents/newchem/medicine.dm index 4745a026fbf..ee73ef2112f 100644 --- a/code/modules/reagents/newchem/medicine.dm +++ b/code/modules/reagents/newchem/medicine.dm @@ -794,7 +794,7 @@ datum/reagent/antihol/on_mob_life(var/mob/living/M as mob) M.drowsyness = 0 M.slurring = 0 M.confused = 0 - M.reagents.remove_reagent("ethanol", 8) + M.reagents.remove_all_type(/datum/reagent/ethanol, 8, 0, 1) if(M.health < 25) M.adjustToxLoss(-2.0) ..()