Plasmaman Plasma Heal Consistency

Removes RNG from Plasmaman plasma heal, ties it to REAGENTS_EFFECT_MULTIPLIER and halves its healing amount.
This commit is contained in:
KasparoVy
2017-02-21 07:56:40 -05:00
parent 3f99632f11
commit 71c2bcae7a
@@ -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"))