Turn off debug mode

pull/6/head
Jake Funke 2017-09-25 21:39:00 +00:00
parent fba9bacf07
commit f29c8d5696
1 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,8 @@ class Plant(object):
def __init__(self, this_filename, generation=1): def __init__(self, this_filename, generation=1):
# Constructor # Constructor
self.plant_id = str(uuid.uuid4()) self.plant_id = str(uuid.uuid4())
# self.life_stages = (3600*24, (3600*24)*3, (3600*24)*10, (3600*24)*20, (3600*24)*30) self.life_stages = (3600*24, (3600*24)*3, (3600*24)*10, (3600*24)*20, (3600*24)*30)
self.life_stages = (5, 10, 15, 20, 25) # self.life_stages = (5, 10, 15, 20, 25)
self.stage = 0 self.stage = 0
self.mutation = 0 self.mutation = 0
self.species = random.randint(0,len(self.species_list)-1) self.species = random.randint(0,len(self.species_list)-1)