From 60beff342047516b7de8e786ec08ef893ae81510 Mon Sep 17 00:00:00 2001 From: BurgerLua Date: Sat, 20 Jul 2019 17:42:00 -0700 Subject: [PATCH 1/2] Added --- code/game/machinery/cloning.dm | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index ba9b6fc225..c9e287296c 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -163,15 +163,11 @@ H.hardset_dna(ui, se, H.real_name, null, mrace, features) - if(efficiency > 2) - var/list/unclean_mutations = (GLOB.not_good_mutations|GLOB.bad_mutations) - H.dna.remove_mutation_group(unclean_mutations) - if(efficiency > 5 && prob(20)) - H.randmutvg() - if(efficiency < 3 && prob(50)) - var/mob/M = H.randmutb() - if(ismob(M)) - H = M + if(prob(50 - efficiency*10)) //Chance to give a bad mutation. + H.randmutb() //100% bad mutation. Can be cured with mutadone. + + if(prob(50 - efficiency*10)) //Chance to scramble your DNA + scramble_dna(H,ui=TRUE,10) //Chance to scramble your visual DNA a little, with 10% occuring for each node. H.silent = 20 //Prevents an extreme edge case where clones could speak if they said something at exactly the right moment. occupant = H From 11957276172bdf72253a6505c185e90ebc70d941 Mon Sep 17 00:00:00 2001 From: BurgerLUA Date: Mon, 22 Jul 2019 16:18:43 -0700 Subject: [PATCH 2/2] snowflake-b-gone --- code/game/machinery/cloning.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index c9e287296c..f32772b600 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -166,9 +166,6 @@ if(prob(50 - efficiency*10)) //Chance to give a bad mutation. H.randmutb() //100% bad mutation. Can be cured with mutadone. - if(prob(50 - efficiency*10)) //Chance to scramble your DNA - scramble_dna(H,ui=TRUE,10) //Chance to scramble your visual DNA a little, with 10% occuring for each node. - H.silent = 20 //Prevents an extreme edge case where clones could speak if they said something at exactly the right moment. occupant = H