all repos — groupgardenbot @ 2c8379d8c4474ff4af85f141bdfe11435a0326dd

An extension of the game "botany", originally designed for unix-based systems, to the Telegram Bot API.

remove useless and problematic float
Marco Andronaco andronacomarco@gmail.com
Sun, 02 Jun 2024 21:54:49 +0200
commit

2c8379d8c4474ff4af85f141bdfe11435a0326dd

parent

a2c0ec4a606eda2ed03baab9f3c5aa3d140832a8

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M Gardening.pyGardening.py

@@ -6,7 +6,7 @@ death_duration = 5 * water_duration

stage_factors = (1, 3, 10, 20, 30) indicator_squares = 10 mutation_rarity = 1_000_000 # Increase this # to make mutation rarer (chance 1 out of x each second) -max_plant_rarity = 256.0 +max_plant_rarity = 256 class Plant(object): # This is your plant!