DS3: Remove the specific condition for "Path of the Dragon Gesture"

This commit is contained in:
Marechal-l
2022-07-12 18:49:07 +02:00
parent a27ede64c8
commit 9dfb681cda

View File

@@ -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):