From 00fe6c2175b79ff2e4c797f2bbe24d0aab47b289 Mon Sep 17 00:00:00 2001 From: Jake Funke Date: Wed, 19 Apr 2017 20:32:18 +0000 Subject: [PATCH] Update menu for new ascii display --- menu_screen.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/menu_screen.py b/menu_screen.py index e33e080..699906e 100644 --- a/menu_screen.py +++ b/menu_screen.py @@ -145,9 +145,12 @@ class CursedMenu(object): elif this_plant.stage == 2: this_filename = plant_art_dict[this_plant.species]+'1.txt' self.ascii_render(this_filename, ypos, xpos) - elif this_plant.stage >= 3: + elif this_plant.stage == 3: this_filename = plant_art_dict[this_plant.species]+'2.txt' self.ascii_render(this_filename, ypos, xpos) + elif this_plant.stage >= 4: + this_filename = plant_art_dict[this_plant.species]+'3.txt' + self.ascii_render(this_filename, ypos, xpos) def draw_default(self): # draws default menu