From 934c632b13e2e1f65a5226fddd557db95b6e400b Mon Sep 17 00:00:00 2001 From: Jake Funke Date: Fri, 26 May 2017 00:06:27 +0000 Subject: [PATCH] Lowered mutation chance --- botany.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botany.py b/botany.py index 075a42b..9967f9b 100755 --- a/botany.py +++ b/botany.py @@ -207,7 +207,7 @@ class Plant(object): def mutate_check(self): # Create plant mutation # Increase this # to make mutation rarer (chance 1 out of x each second) - CONST_MUTATION_RARITY = 5000 + CONST_MUTATION_RARITY = 10000 mutation_seed = random.randint(1,CONST_MUTATION_RARITY) if mutation_seed == CONST_MUTATION_RARITY: # mutation gained!