From 667a2fc82cd1cc9b06f8445cfd203ddd72ce24ee Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Fri, 16 Aug 2024 19:17:51 -0400 Subject: [PATCH] Make it so the shops show up in the entrance hints --- worlds/tunic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/tunic/__init__.py b/worlds/tunic/__init__.py index ea5c4c412a..051f89c7ff 100644 --- a/worlds/tunic/__init__.py +++ b/worlds/tunic/__init__.py @@ -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: