TUNIC: Fix missing ladder rule for library fuse #4271

This commit is contained in:
Scipio Wright 2024-11-27 19:43:52 -05:00 committed by GitHub
parent e1f16c6721
commit 6656528d78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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: