From 71c2bcae7a97867a291468c1cc9fc95e870d0755 Mon Sep 17 00:00:00 2001 From: KasparoVy Date: Tue, 21 Feb 2017 07:46:55 -0500 Subject: [PATCH] Plasmaman Plasma Heal Consistency Removes RNG from Plasmaman plasma heal, ties it to REAGENTS_EFFECT_MULTIPLIER and halves its healing amount. --- code/modules/reagents/chemistry/reagents/pyrotechnic.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/pyrotechnic.dm b/code/modules/reagents/chemistry/reagents/pyrotechnic.dm index 48d8c33977d..40c59f0891c 100644 --- a/code/modules/reagents/chemistry/reagents/pyrotechnic.dm +++ b/code/modules/reagents/chemistry/reagents/pyrotechnic.dm @@ -24,8 +24,7 @@ /datum/reagent/plasma/on_mob_life(mob/living/M) var/mob/living/carbon/human/H = M if(istype(H) && H.species && H.species.flags & PLASMA_BASED) //Plasma shouldn't poison plasmamen. - if(prob(20)) - H.heal_organ_damage(1, 1) + H.heal_organ_damage(0.5*REAGENTS_EFFECT_MULTIPLIER, 0.5*REAGENTS_EFFECT_MULTIPLIER) else M.adjustToxLoss(1*REAGENTS_EFFECT_MULTIPLIER) if(holder.has_reagent("epinephrine"))