From e7c1cbda6354678121385f4eaaf4af945fa8e7c4 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sat, 23 Oct 2021 19:27:08 -0500 Subject: [PATCH] Remove outdated hammer rule for Pyramid Exit Ledge Drop --- OverworldShuffle.py | 2 +- Rules.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/OverworldShuffle.py b/OverworldShuffle.py index 25ff9d8c..dd5a161c 100644 --- a/OverworldShuffle.py +++ b/OverworldShuffle.py @@ -876,7 +876,7 @@ mandatory_connections = [# Whirlpool Connections ('Grassy Lawn Pegs', 'Village of Outcasts Area'), #hammer ('Shield Shop Fence (Outer) Ledge Drop', 'Shield Shop Fence'), ('Shield Shop Fence (Inner) Ledge Drop', 'Shield Shop Area'), - ('Pyramid Exit Ledge Drop', 'Pyramid Area'), #hammer(inverted) + ('Pyramid Exit Ledge Drop', 'Pyramid Area'), ('Broken Bridge Hammer Rock (South)', 'Broken Bridge Northeast'), #hammer/glove ('Broken Bridge Hammer Rock (North)', 'Broken Bridge Area'), #hammer/glove ('Broken Bridge Hookshot Gap', 'Broken Bridge West'), #hookshot diff --git a/Rules.py b/Rules.py index c0cb5505..a92ed288 100644 --- a/Rules.py +++ b/Rules.py @@ -1017,7 +1017,6 @@ def ow_rules(world, player): add_rule(world.get_entrance('Pyramid Hole', player), lambda state: False) set_rule(world.get_entrance('Pyramid Entrance', player), lambda state: False) - set_rule(world.get_entrance('Pyramid Exit Ledge Drop', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('Pyramid Mirror Spot', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Pyramid Pass Mirror Spot', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Pyramid Courtyard Mirror Spot', player), lambda state: state.has_Mirror(player))