Change Maze race to collect location rather than reach region

- Brother West is not reachable from the clip
This commit is contained in:
KrisDavie
2023-12-12 18:43:55 +01:00
parent e1f2369f13
commit 15558250da

View File

@@ -130,7 +130,6 @@ inverted_boots_clip_exits_lw = [
("Lake Hylia Island Clip Spot", "Light World", "Lake Hylia Island"), ("Lake Hylia Island Clip Spot", "Light World", "Lake Hylia Island"),
("Death Mountain Descent", "West Death Mountain (Bottom)", "Light World"), ("Death Mountain Descent", "West Death Mountain (Bottom)", "Light World"),
("Kings Grave Clip Spot", "West Death Mountain (Bottom)", "Kings Grave Area"), ("Kings Grave Clip Spot", "West Death Mountain (Bottom)", "Kings Grave Area"),
("Maze Race Clip Spot", "Light World", "Maze Race Ledge"),
] ]
open_boots_clip_exits_lw = [ open_boots_clip_exits_lw = [
@@ -291,6 +290,10 @@ def overworld_glitches_rules(world, player):
world.get_location("Zora's Ledge", player), lambda state: state.can_boots_clip_lw(player) world.get_location("Zora's Ledge", player), lambda state: state.can_boots_clip_lw(player)
) # assumes access to Waterwalk ability ) # assumes access to Waterwalk ability
add_alternate_rule(
world.get_location('Maze Race', player), lambda state: state.can_boots_clip_lw(player)
)
# This is doable even with bad enemies # This is doable even with bad enemies
add_alternate_rule(world.get_location("Hobo", player), lambda state: state.can_boots_clip_lw(player)) add_alternate_rule(world.get_location("Hobo", player), lambda state: state.can_boots_clip_lw(player))