all repos — Legends-RPG @ c57c1c05921f6ba261246fdfa0f1c7a48b8127c5

A fantasy mini-RPG built with Python and Pygame.

Fixed bug that crashed game in magic shop when trying to sell an item.
Justin Armstrong justinmeister@gmail.com
Thu, 19 Jun 2014 07:35:32 -0700
commit

c57c1c05921f6ba261246fdfa0f1c7a48b8127c5

parent

0802f998231bfac166df0e8174a45a00e71776da

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

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

@@ -28,7 +28,7 @@ self.sellable_items = level.sell_items

self.player_inventory = level.game_data['player inventory'] self.name = level.name self.state = 'dialogue' - self.no_selling = ['Inn', 'Magic Shop'] + self.no_selling = ['Inn', 'magic shop'] self.weapon_list = ['Long Sword', 'Rapier'] self.armor_list = ['Chain Mail', 'Wooden Shield'] self.font = pg.font.Font(setup.FONTS[c.MAIN_FONT], 22)