From b7c95e6f8becb44e03bd5c8a781e8a7366901ee5 Mon Sep 17 00:00:00 2001 From: mracsys Date: Wed, 18 Oct 2023 20:32:57 -0400 Subject: [PATCH] allow mask shop slots to be assigned ice trap model --- LocationList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LocationList.py b/LocationList.py index e30ca4047..60943b3dc 100644 --- a/LocationList.py +++ b/LocationList.py @@ -2266,7 +2266,7 @@ def shop_address(shop_id: int, shelf_id: int) -> int: 'BossHeart': [name for (name, data) in location_table.items() if data[0] == 'BossHeart'], 'CollectableLike': [name for (name, data) in location_table.items() if data[0] in ('Collectable', 'BossHeart', 'GS Token', 'SilverRupee')], 'CanSee': [name for (name, data) in location_table.items() - if data[0] in ('Collectable', 'BossHeart', 'GS Token', 'Shop', 'Freestanding', 'ActorOverride', 'RupeeTower', 'Pot', 'Crate', 'FlyingPot', 'SmallCrate', 'Beehive', 'SilverRupee') + if data[0] in ('Collectable', 'BossHeart', 'GS Token', 'Shop', 'MaskShop', 'Freestanding', 'ActorOverride', 'RupeeTower', 'Pot', 'Crate', 'FlyingPot', 'SmallCrate', 'Beehive', 'SilverRupee') # Treasure Box Shop, Bombchu Bowling, Hyrule Field (OoT), Lake Hylia (RL/FA) or data[0:2] in [('Chest', 0x10), ('NPC', 0x4B), ('NPC', 0x51), ('NPC', 0x57)]], 'Dungeon': [name for (name, data) in location_table.items() if data[5] is not None and any(dungeon in data[5] for dungeon in dungeons)],