Remove mirror clips from Inverted / No Glitches
This commit is contained in:
parent
9341546159
commit
5e1df5dc36
3
Rules.py
3
Rules.py
|
@ -481,6 +481,9 @@ def forbid_overworld_glitches(world, player):
|
||||||
if world.mode[player] != 'inverted':
|
if world.mode[player] != 'inverted':
|
||||||
for exit in OWGSets.get_mirror_clip_spots_dw():
|
for exit in OWGSets.get_mirror_clip_spots_dw():
|
||||||
set_rule(world.get_entrance(exit, player), lambda state: False)
|
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 inverted_rules(world, player):
|
def inverted_rules(world, player):
|
||||||
|
|
Loading…
Reference in New Issue