Fix issue where logic assumed you could pass through hyrule castle sewers without lamp if there is no free light cone.

This commit is contained in:
LLCoolDave 2017-08-04 20:17:33 +02:00
parent 4a3e7ce851
commit 6eff675ae7
1 changed files with 2 additions and 0 deletions

View File

@ -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):