Additional fixes for Ice Rod Hunt

This commit is contained in:
CaitSith2
2021-01-26 07:06:33 -08:00
parent 1275e49073
commit c88d9b4339
3 changed files with 9 additions and 3 deletions

View File

@@ -254,7 +254,10 @@ def create_shops(world, player: int):
loc.shop_slot = True
loc.locked = True
if single_purchase_slots.pop():
additional_item = 'Rupees (50)' # world.random.choice(['Rupees (50)', 'Rupees (100)', 'Rupees (300)'])
if world.goal[player] != 'icerodhunt':
additional_item = 'Rupees (50)' # world.random.choice(['Rupees (50)', 'Rupees (100)', 'Rupees (300)'])
else:
additional_item = 'Nothing'
loc.item = ItemFactory(additional_item, player)
else:
loc.item = ItemFactory('Nothing', player)