Update menu for new ascii display
parent
e9a80ec6aa
commit
00fe6c2175
|
@ -145,9 +145,12 @@ class CursedMenu(object):
|
||||||
elif this_plant.stage == 2:
|
elif this_plant.stage == 2:
|
||||||
this_filename = plant_art_dict[this_plant.species]+'1.txt'
|
this_filename = plant_art_dict[this_plant.species]+'1.txt'
|
||||||
self.ascii_render(this_filename, ypos, xpos)
|
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'
|
this_filename = plant_art_dict[this_plant.species]+'2.txt'
|
||||||
self.ascii_render(this_filename, ypos, xpos)
|
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):
|
def draw_default(self):
|
||||||
# draws default menu
|
# draws default menu
|
||||||
|
|
Loading…
Reference in New Issue