From 9dfb681cdac1e9688e2caee2d1f74ddd9c0748c5 Mon Sep 17 00:00:00 2001 From: Marechal-l Date: Tue, 12 Jul 2022 18:49:07 +0200 Subject: [PATCH] DS3: Remove the specific condition for "Path of the Dragon Gesture" --- 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 d9e76577be..4fff206da9 100644 --- a/worlds/dark_souls_3/__init__.py +++ b/worlds/dark_souls_3/__init__.py @@ -144,7 +144,7 @@ class DarkSouls3World(World): def create_items(self): for name, address in self.item_name_to_id.items(): # Specific items will be included in the item pool under certain conditions. See generate_basic - if name != "Basin of Vows" and name != "Path of the Dragon Gesture": + if name != "Basin of Vows": self.world.itempool += [self.create_item(name)] def generate_early(self):