TUNIC: You can grapple down here without the ladder, neat (#3019)

This commit is contained in:
Scipio Wright 2024-03-26 09:25:41 -04:00 committed by GitHub
parent bf3856866c
commit ea47b90367
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -602,8 +602,8 @@ def set_er_region_rules(world: "TunicWorld", ability_unlocks: Dict[str, int], re
regions["Library Exterior Ladder Region"].connect( regions["Library Exterior Ladder Region"].connect(
connecting_region=regions["Library Exterior Tree Region"], connecting_region=regions["Library Exterior Tree Region"],
rule=lambda state: has_ability(state, player, prayer, options, ability_unlocks) rule=lambda state: has_ability(state, player, prayer, options, ability_unlocks)
and state.has_any({grapple, laurels}, player) and (state.has(grapple, player) or (state.has(laurels, player)
and has_ladder("Ladders in Library", state, player, options)) and has_ladder("Ladders in Library", state, player, options))))
regions["Library Hall Bookshelf"].connect( regions["Library Hall Bookshelf"].connect(
connecting_region=regions["Library Hall"], connecting_region=regions["Library Hall"],