From 85f32d9a977feb00506fca99f982ce696730b797 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Fri, 11 Feb 2022 23:24:10 -0600 Subject: [PATCH] OoT: make Farore's Wind a never-exclude item if the relevant trick is off --- worlds/oot/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/worlds/oot/__init__.py b/worlds/oot/__init__.py index b8053493..29d6d564 100644 --- a/worlds/oot/__init__.py +++ b/worlds/oot/__init__.py @@ -274,6 +274,9 @@ class OOTWorld(World): # Both two-handed swords can be required in glitch logic, so only consider them nonprogression in glitchless self.nonadvancement_items.add('Biggoron Sword') self.nonadvancement_items.add('Giants Knife') + if getattr(self, 'logic_water_central_gs_fw', False): + # Farore's Wind skippable if not used for this logic trick in Water Temple + self.nonadvancement_items.add('Farores Wind') def load_regions_from_json(self, file_path): region_json = read_json(file_path)