Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TUNIC: Extremely minor library logic update #3019

Merged
merged 2 commits into from
Mar 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions worlds/tunic/er_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,8 +602,8 @@ def set_er_region_rules(world: "TunicWorld", ability_unlocks: Dict[str, int], re
regions["Library Exterior Ladder Region"].connect(
connecting_region=regions["Library Exterior Tree Region"],
rule=lambda state: has_ability(state, player, prayer, options, ability_unlocks)
and state.has_any({grapple, laurels}, player)
and has_ladder("Ladders in Library", state, player, options))
and (state.has(grapple, player) or (state.has(laurels, player)
and has_ladder("Ladders in Library", state, player, options))))

regions["Library Hall Bookshelf"].connect(
connecting_region=regions["Library Hall"],
Expand Down
Loading