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:
parent
4a3e7ce851
commit
6eff675ae7
2
Rules.py
2
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):
|
||||
|
|
Loading…
Reference in New Issue