Some random Mixed OWR fixes

This commit is contained in:
codemann8
2024-05-11 14:39:05 -05:00
parent 1f66aa87fe
commit 8b295a74ad
3 changed files with 4 additions and 4 deletions

View File

@@ -1162,8 +1162,8 @@ def create_shops(world, player):
world.shops[player] = []
for region_name, (room_id, type, shopkeeper, custom, locked, inventory, sram) in shop_table.items():
if world.mode[player] == 'inverted':
if (0x35 not in world.owswaps[player][0] and region_name == 'Dark Lake Hylia Shop') \
or (0x35 in world.owswaps[player][0] and region_name == 'Lake Hylia Shop'):
if (not world.is_tile_swapped(0x35, player) and region_name == 'Dark Lake Hylia Shop') \
or (not world.is_tile_swapped(0x35, player) and region_name == 'Lake Hylia Shop'):
locked = True
inventory = [('Blue Potion', 160), ('Blue Shield', 50), ('Bombs (10)', 50)]
custom = True