diff --git a/code/modules/reagents/Chemistry-Reagents/Medicine-Reagents.dm b/code/modules/reagents/Chemistry-Reagents/Medicine-Reagents.dm index 700315b3e36..d6653e8e45a 100644 --- a/code/modules/reagents/Chemistry-Reagents/Medicine-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents/Medicine-Reagents.dm @@ -179,7 +179,7 @@ datum/reagent/medicine/silver_sulfadiazine/reaction_mob(var/mob/living/M as mob, return datum/reagent/medicine/silver_sulfadiazine/on_mob_life(var/mob/living/M as mob) - M.adjustFireLoss(-1*REM) + M.adjustFireLoss(-2*REM) ..() return @@ -251,10 +251,10 @@ datum/reagent/medicine/charcoal metabolization_rate = 0.5 * REAGENTS_METABOLISM datum/reagent/medicine/charcoal/on_mob_life(var/mob/living/M as mob) - M.adjustToxLoss(-1.5*REM) + M.adjustToxLoss(-2*REM) for(var/datum/reagent/R in M.reagents.reagent_list) if(R != src) - M.reagents.remove_reagent(R.id,0.5) + M.reagents.remove_reagent(R.id,1) ..() return