I'm stupid

This commit is contained in:
Kathy
2020-07-08 11:53:14 +02:00
parent fd77d2a770
commit ff4ff6c39b
+2 -2
View File
@@ -256,8 +256,8 @@
//This is where stability mutations exist now.
if(myseed.instability >= 80)
var/mutation_chance = 5 + (100 - myseed.instability)
mutate(0, 0, 0, 0, 0, 0, 0, mutation_chance, 0) //Exceedingly low odds of gaining a trait.
var/mutation_chance = myseed.instability - 75
mutate(0, 0, 0, 0, 0, 0, 0, mutation_chance, 0) //Scaling odds of a random trait or chemical
if(myseed.instability >= 60)
if(prob((myseed.instability)/2) && !self_sustaining && length(myseed.mutatelist)) //Minimum 30%, Maximum 50% chance of mutating every age tick when not on autogrow.
mutatespecie()