From 761115036091aa34921189893374be5f04aca135 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Fri, 24 Apr 2015 17:45:06 -0700 Subject: [PATCH] Buffs Charcoal and Silver Sulf. As pointed out here, after I ran the numbers, I found that Charcoal and Silver Sulf. under-performed compared to their ancestors. https://tgstation13.org/phpBB/viewtopic.php?f=10&t=3440&p=83903#p83903 --- .../reagents/Chemistry-Reagents/Medicine-Reagents.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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