From f44a005b49f488cf473c662e6dfc0b9202d6d782 Mon Sep 17 00:00:00 2001 From: Miniature Date: Sun, 18 Mar 2012 00:58:27 +1030 Subject: [PATCH] Nerfed unstable mutagen back to what it was before metabolism change --- code/modules/chemical/Chemistry-Reagents.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 95a35cd558f..ec9472a9b5d 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -922,7 +922,8 @@ datum on_mob_life(var/mob/living/M as mob) if(isrobot(M) || isAI(M)) return // Mutagen doesn't do anything to robutts! if(!M) M = holder.my_atom - M.radiation += 3 + if(prob(33)) + M.radiation += 1 ..() return