all repos — Legends-RPG @ d9c581e5d018bd9cee12f2fb8723f65375a79347

A fantasy mini-RPG built with Python and Pygame.

Fixed menu bug, reset game begining to overworld
Justin Armstrong justinmeister@gmail.com
Mon, 07 Apr 2014 18:01:30 -0700
commit

d9c581e5d018bd9cee12f2fb8723f65375a79347

parent

cc33fef47c2a05a8fbfc55b7d32f72fb5ff0fd59

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M data/menugui.pydata/menugui.py

@@ -373,7 +373,7 @@

self.allow_input = False elif keys[pg.K_RETURN]: self.level.state = 'normal' - self.state = 'stats' + self.info_box.state = 'stats' self.allow_input = False self.arrow_index = 0
M data/states/main_menu/main_menu.pydata/states/main_menu/main_menu.py

@@ -5,7 +5,7 @@

class Menu(tools._State): def __init__(self): super(Menu, self).__init__() - self.next = c.BROTHER_HOUSE + self.next = c.OVERWORLD self.surface = setup.SCREEN self.rect = self.surface.get_rect() text = 'Arrows for navigation, space for input, Enter/Return for menu'