From 247137e43a76001473696a2fc95c95925ab7638a Mon Sep 17 00:00:00 2001 From: compiling <8335770+compiling@users.noreply.github.com> Date: Wed, 15 Apr 2020 21:35:27 +1000 Subject: [PATCH] Remove mirror clips from Inverted / No Glitches --- Rules.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rules.py b/Rules.py index 56aebac4..0543f2e3 100644 --- a/Rules.py +++ b/Rules.py @@ -867,6 +867,9 @@ def forbid_overworld_glitches(world, player): if world.mode != 'inverted': for exit in OWGSets.get_mirror_clip_spots_dw(): set_rule(world.get_entrance(exit, player), lambda state: False) + else: + for exit in OWGSets.get_mirror_clip_spots_lw(): + set_rule(world.get_entrance(exit, player), lambda state: False) def no_glitches_rules(world, player): if world.mode != 'inverted':