Hopefully fixes mutagen turning cyborgs into humans.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2554 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
vageyenaman@gmail.com
2011-11-25 22:18:09 +00:00
parent 845c62dc21
commit d0d3f3bbfd

View File

@@ -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
..()