From 6eff675ae734235f80ba16d739149cafdbfe4e54 Mon Sep 17 00:00:00 2001 From: LLCoolDave Date: Fri, 4 Aug 2017 20:17:33 +0200 Subject: [PATCH] Fix issue where logic assumed you could pass through hyrule castle sewers without lamp if there is no free light cone. --- Rules.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rules.py b/Rules.py index 8ced041c..ddf57c74 100644 --- a/Rules.py +++ b/Rules.py @@ -371,6 +371,8 @@ def no_glitches_rules(world): if not world.sewer_light_cone: add_rule(world.get_location('[dungeon-C-B1] Escape - First B1 Room'), lambda state: state.has('Lamp')) + add_rule(world.get_entrance('Sewers Back Door'), lambda state: state.has('Lamp')) + add_rule(world.get_entrance('Throne Room'), lambda state: state.has('Lamp')) def open_rules(world):