From d0d3f3bbfd2bf78b9984155846273202ea9a3dca Mon Sep 17 00:00:00 2001 From: "vageyenaman@gmail.com" Date: Fri, 25 Nov 2011 22:18:09 +0000 Subject: [PATCH] Hopefully fixes mutagen turning cyborgs into humans. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2554 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/chemical/Chemistry-Reagents.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index b13b30ecc23..8bce8cc24c4 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -812,6 +812,7 @@ datum reaction_mob(var/mob/M, var/method=TOUCH, var/volume) if(!..()) return + if(isrobot(M) || isAI(M)) return // Mutagen doesn't do anything to robutts! src = null if((method==TOUCH && prob(33)) || method==INGEST) randmuti(M) @@ -823,6 +824,7 @@ datum updateappearance(M,M.dna.uni_identity) return 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 ..()