From 8c1690ef65a916c494c766a6a3db6f3dc82ab35f Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Fri, 11 Feb 2022 23:26:15 -0600 Subject: [PATCH] OoT: invert logic of previous commit --- worlds/oot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/oot/__init__.py b/worlds/oot/__init__.py index 29d6d564..87bbf889 100644 --- a/worlds/oot/__init__.py +++ b/worlds/oot/__init__.py @@ -274,7 +274,7 @@ 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): + if not 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')