Skip to content

Commit

Permalink
Merge pull request #594 from Neerti/12/15/2015_fixes_radiation_meds
Browse files Browse the repository at this point in the history
Makes radiation medication not actually irradiate you worse.
  • Loading branch information
Neerti committed Dec 16, 2015
2 parents 4d40dbc + 33f85b8 commit 0b83828
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@
scannable = 1

/datum/reagent/hyronalin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
M.apply_effect(max(M.radiation - 30 * removed, 0), IRRADIATE, check_protection = 0)
M.radiation = max(M.radiation - 30 * removed, 0)

/datum/reagent/arithrazine
name = "Arithrazine"
Expand All @@ -357,7 +357,7 @@
scannable = 1

/datum/reagent/arithrazine/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
M.apply_effect(max(M.radiation - 70 * removed, 0), IRRADIATE, check_protection = 0)
M.radiation = max(M.radiation - 70 * removed, 0)
M.adjustToxLoss(-10 * removed)
if(prob(60))
M.take_organ_damage(4 * removed, 0)
Expand Down

0 comments on commit 0b83828

Please sign in to comment.