diff --git a/OWGSets.py b/OWGSets.py index 79879ef4..3ea44112 100644 --- a/OWGSets.py +++ b/OWGSets.py @@ -164,4 +164,5 @@ def get_mirror_clip_spots_lw(): ''' return [ 'Death Mountain Bunny Descent Mirror Spot', - ] \ No newline at end of file + 'Death Mountain Offset Mirror', + ] diff --git a/Rules.py b/Rules.py index c76335bf..d57441e8 100644 --- a/Rules.py +++ b/Rules.py @@ -867,7 +867,7 @@ def forbid_overworld_glitches(world, player): set_rule(world.get_entrance(exit, player), lambda state: False) for exit in OWGSets.get_glitched_speed_drops_dw(): set_rule(world.get_entrance(exit, player), lambda state: False) - if world.mode[player] != 'inverted': + if world.mode != 'inverted': for exit in OWGSets.get_mirror_clip_spots_dw(): set_rule(world.get_entrance(exit, player), lambda state: False)