From 59974c2fbea2291e62c72090a847102aeefb25a1 Mon Sep 17 00:00:00 2001 From: qadan Date: Wed, 26 Feb 2020 15:19:56 -0400 Subject: [PATCH] add zora ledge too --- Rules.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rules.py b/Rules.py index 79d67aa8..aa2f0e9a 100644 --- a/Rules.py +++ b/Rules.py @@ -996,6 +996,9 @@ def overworld_glitches_rules(world, player): else: add_rule(world.get_entrance('South Dark World Teleporter', player), lambda state: state.has_Boots(player) and state.can_lift_rocks(player), 'or') + # Zora's Ledge via waterwalk setup. + add_rule(world.get_location('Zora\'s Ledge', player), lambda state: state.has_Boots(player), 'or') + def open_rules(world, player): # softlock protection as you can reach the sewers small key door with a guard drop key forbid_item(world.get_location('Hyrule Castle - Boomerang Chest', player), 'Small Key (Escape)', player)