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
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
data/shopgui.py
→
data/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)