mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 04:48:18 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user