Skip to content

Commit

Permalink
TUNIC: Fix missing ladder rule for library fuse #4271
Browse files Browse the repository at this point in the history
  • Loading branch information
ScipioWright authored Nov 28, 2024
1 parent e1f16c6 commit 6656528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/tunic/er_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ def set_er_location_rules(world: "TunicWorld") -> None:
set_rule(world.get_location("West Garden Fuse"),
lambda state: has_ability(prayer, state, world))
set_rule(world.get_location("Library Fuse"),
lambda state: has_ability(prayer, state, world))
lambda state: has_ability(prayer, state, world) and has_ladder("Ladders in Library", state, world))

# Bombable Walls
for location_name in bomb_walls:
Expand Down

0 comments on commit 6656528

Please sign in to comment.