From 72ba1f1f0dd2bb76c598086777b2b8edad00846a Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 8 Jan 2023 03:34:38 -0600 Subject: [PATCH] Minor OWG generation error issue --- OverworldGlitchRules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OverworldGlitchRules.py b/OverworldGlitchRules.py index 1d36de35..2372993f 100644 --- a/OverworldGlitchRules.py +++ b/OverworldGlitchRules.py @@ -312,7 +312,7 @@ def overworld_glitches_rules(world, player): #add_alternate_rule(world.get_location('Zora\'s Ledge', player), lambda state: state.has_Boots(player)) #revisit when we can guarantee water walk # Adding additional item requirements to OWG Clips - if world.is_tile_swapped(0x18, player): + if world.is_tile_swapped(0x18, player) != world.is_tile_swapped(0x28, player): add_additional_rule(world.get_entrance('Kakariko To Dig Game Hook Clip', player), lambda state: state.has('Hookshot', player)) else: add_additional_rule(world.get_entrance('VoO To Dig Game Hook Clip', player), lambda state: state.has('Hookshot', player))