From 63b39f92be8ecea6a9012a7fd08ce154fd059cb6 Mon Sep 17 00:00:00 2001 From: Leagsaidh Gordon Date: Tue, 5 Jun 2018 01:05:07 +0100 Subject: [PATCH] Fix the fix for generation bonus --- botany.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botany.py b/botany.py index c93217c..700b2d8 100755 --- a/botany.py +++ b/botany.py @@ -446,7 +446,7 @@ class DataManager(object): self.last_water_gain = time.time() else: ticks_to_add = 0 - this_plant.ticks += ticks_to_add * (0.2 * (self.generation - 1) + 1) + this_plant.ticks += ticks_to_add * (0.2 * (this_plant.generation - 1) + 1) return this_plant def plant_age_convert(self,this_plant):