From 68109ed93f8e418664b9be19616578f175c17092 Mon Sep 17 00:00:00 2001 From: Marechal-l Date: Thu, 14 Jul 2022 15:03:12 +0200 Subject: [PATCH] DS3: Fix "Unknown location" regression issue --- worlds/dark_souls_3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/dark_souls_3/__init__.py b/worlds/dark_souls_3/__init__.py index 35416a163f..3a3f194e74 100644 --- a/worlds/dark_souls_3/__init__.py +++ b/worlds/dark_souls_3/__init__.py @@ -141,7 +141,7 @@ class DarkSouls3World(World): new_region = Region(region_name, RegionType.Generic, region_name, self.player) if location_table: for name, address in location_table.items(): - location = Location(self.player, name, address, new_region) + location = Location(self.player, name, self.location_name_to_id[name], new_region) new_region.locations.append(location) self.world.regions.append(new_region) return new_region