From 4c941a9072203ee867dc344e2a56a46fe0c4b4d1 Mon Sep 17 00:00:00 2001 From: Crazylemon Date: Thu, 24 Sep 2015 15:54:15 -0700 Subject: [PATCH] Fixes up Polonium to work with NO_DNA_RAD Did a search through the codebase, thought it might be good to patch up other things that touch the radiation variable. --- code/modules/reagents/newchem/toxins.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/newchem/toxins.dm b/code/modules/reagents/newchem/toxins.dm index 8668a0948f9..907ddc994b1 100644 --- a/code/modules/reagents/newchem/toxins.dm +++ b/code/modules/reagents/newchem/toxins.dm @@ -15,7 +15,7 @@ datum/reagent/polonium datum/reagent/polonium/on_mob_life(var/mob/living/M as mob) if(!M) M = holder.my_atom - M.radiation += 8 + M.apply_effect(8, IRRADIATE) ..() return @@ -742,4 +742,4 @@ datum/reagent/ants/on_mob_life(var/mob/living/M as mob) if(!M) M = holder.my_atom M.adjustBruteLoss(2) ..() - return \ No newline at end of file + return