Fixed Unstable Mutagen chance (#343)

* Fixed Unstable Mutagen chance

This fixes the mutation chance of unstable mutagen, to behave as the
author intended.

It also adds a little RP message to give some feedback
This commit is contained in:
NanakoAC
2016-05-30 22:14:41 +01:00
committed by skull132
parent 39bf9b2304
commit ec5aec30f7
2 changed files with 39 additions and 1 deletions
@@ -235,7 +235,8 @@
/datum/reagent/mutagen/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(M.dna)
if(prob(removed * 0.1)) // Approx. one mutation per 10 injected/20 ingested/30 touching units
if(prob(removed * 10)) // Approx. one mutation per 10 injected/20 ingested/30 touching units
M << "Something feels different about you..."
randmuti(M)
if(prob(98))
randmutb(M)