Make it so the shops show up in the entrance hints

This commit is contained in:
Scipio Wright
2024-08-16 19:17:51 -04:00
parent f04f99cf3b
commit 667a2fc82c

View File

@@ -409,7 +409,7 @@ class TunicWorld(World):
all_state = self.multiworld.get_all_state(True)
all_state.update_reachable_regions(self.player)
paths = all_state.path
portal_names = [portal.name for portal in portal_mapping]
portal_names = {portal.name for portal in portal_mapping}.union({f"Shop Portal {i + 1}" for i in range(500)})
for location in self.multiworld.get_locations(self.player):
# skipping event locations
if not location.address: