From cf767252f68f17a2b4f6174c7dff933031167f91 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Tue, 16 Nov 2021 02:57:00 +0100 Subject: [PATCH] effect multipler --- .../reagents/chemistry/reagents/medicine_reagents.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index e79cfcf23d..35eeae2231 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -1787,15 +1787,15 @@ /datum/reagent/medicine/system_cleaner/on_mob_life(mob/living/carbon/M) . = ..() if(HAS_TRAIT(M, TRAIT_ROBOTIC_ORGANISM)) - M.adjustToxLoss(-0.4, toxins_type = TOX_SYSCORRUPT) + M.adjustToxLoss(-0.4*REAGENTS_EFFECT_MULTIPLIER, toxins_type = TOX_SYSCORRUPT) else - M.adjustToxLoss(0.5) + M.adjustToxLoss(0.5*REAGENTS_EFFECT_MULTIPLIER) . = 1 /datum/reagent/medicine/system_cleaner/overdose_process(mob/living/carbon/M) . = ..() if(HAS_TRAIT(M, TRAIT_ROBOTIC_ORGANISM)) - M.adjustToxLoss(0.8, toxins_type = TOX_SYSCORRUPT) //inverts its positive effect on overdose, for organics it's just more toxic + M.adjustToxLoss(0.8*REAGENTS_EFFECT_MULTIPLIER, toxins_type = TOX_SYSCORRUPT) //inverts its positive effect on overdose, for organics it's just more toxic else - M.adjustToxLoss(0.5) + M.adjustToxLoss(0.5*REAGENTS_EFFECT_MULTIPLIER) . = 1