remove useless and problematic float
Marco Andronaco andronacomarco@gmail.com
Sun, 02 Jun 2024 21:54:49 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
Gardening.py
→
Gardening.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!