Merge pull request #12 from rakiru/patch-1

Fix generation bonus not applying while closed
pull/13/head
Jake Funke 2018-06-04 17:01:17 -07:00 committed by GitHub
commit 513d658a05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@ class DataManager(object):
self.last_water_gain = time.time() self.last_water_gain = time.time()
else: else:
ticks_to_add = 0 ticks_to_add = 0
this_plant.ticks += ticks_to_add this_plant.ticks += ticks_to_add * (0.2 * (self.generation - 1) + 1)
return this_plant return this_plant
def plant_age_convert(self,this_plant): def plant_age_convert(self,this_plant):