tweak for score display

pull/14/head
Jake Funke 2018-06-05 00:19:47 +00:00
parent 4738c1481e
commit 57203b21f4
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ class CursedMenu(object):
# updates plant data on menu screen, live! # updates plant data on menu screen, live!
while not self.exit: while not self.exit:
self.plant_string = self.plant.parse_plant() self.plant_string = self.plant.parse_plant()
self.plant_ticks = str(self.plant.ticks) self.plant_ticks = str(int(self.plant.ticks))
if self.initialized: if self.initialized:
self.update_options() self.update_options()
self.draw() self.draw()