From a38c64914f3f6aa899d290a103ee2d62ea00e9a1 Mon Sep 17 00:00:00 2001 From: Jake Funke Date: Mon, 26 Aug 2019 16:34:08 +0000 Subject: [PATCH] clarify growth rate --- menu_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu_screen.py b/menu_screen.py index da64cb0..ba63080 100644 --- a/menu_screen.py +++ b/menu_screen.py @@ -564,7 +564,7 @@ class CursedMenu(object): # get plant description before printing output_string = self.get_plant_description(this_plant) growth_multiplier = 1 + (0.2 * (this_plant.generation-1)) - output_string += "Generation: {}\nGrowth rate: {}".format(self.plant.generation, growth_multiplier) + output_string += "Generation: {}\nGrowth rate: {}x".format(self.plant.generation, growth_multiplier) self.draw_info_text(output_string) self.infotoggle = 1 else: