Also fixes radiation causing reagents

This commit is contained in:
S34NW
2021-06-10 10:06:17 +01:00
parent 616e641d71
commit 2787fb14df
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -87,7 +87,7 @@
Paralyse(effect * blocked)
if(IRRADIATE)
if(!HAS_TRAIT(src, TRAIT_RADIMMUNE))
radiation += max(effect * blocked, 0)
radiation += max((effect * RAD_DOSAGE_MULTIPLIER) * blocked, 0)
if(SLUR)
Slur(effect * blocked)
if(STUTTER)
@@ -159,7 +159,7 @@
taste_description = "the colour blue and regret"
/datum/reagent/radium/on_mob_life(mob/living/M)
if(M.radiation < 80)
if(M.radiation < 800)
M.apply_effect(4, IRRADIATE)
return ..()