From c0c5431800d0306d01814e9902566c9b4fc9220b Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 7 Aug 2025 17:18:47 -0400 Subject: Assign AP IDs to doors and panels --- apworld/regions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apworld/regions.py') diff --git a/apworld/regions.py b/apworld/regions.py index 24c2281..d388678 100644 --- a/apworld/regions.py +++ b/apworld/regions.py @@ -11,7 +11,8 @@ def create_region(room, world: "Lingo2World") -> Region: new_region = Region(room.name, world.player, world.multiworld) for location in world.player_logic.locations_by_room.get(room.id, {}): - new_location = Lingo2Location(world.player, location.name, location.code, new_region) + new_location = Lingo2Location(world.player, world.static_logic.location_id_to_name[location.code], + location.code, new_region) new_region.locations.append(new_location) return new_region -- cgit 1.4.1