Skip to content

Commit

Permalink
TUNIC: Fix duplicate entrance name in ER (#2818)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScipioWright authored Feb 14, 2024
1 parent e5980ac commit f178d43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/tunic/er_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,13 +377,13 @@ def set_er_region_rules(world: "TunicWorld", ability_unlocks: Dict[str, int], re
# nmg: ice grapple through the big gold door, can do it both ways
regions["Eastern Vault Fortress"].connect(
connecting_region=regions["Eastern Vault Fortress Gold Door"],
name="Fortress Gold Door",
name="Fortress to Gold Door",
rule=lambda state: state.has_all({"Activate Eastern Vault West Fuses",
"Activate Eastern Vault East Fuse"}, player)
or has_ice_grapple_logic(False, state, player, options, ability_unlocks))
regions["Eastern Vault Fortress Gold Door"].connect(
connecting_region=regions["Eastern Vault Fortress"],
name="Fortress Gold Door",
name="Gold Door to Fortress",
rule=lambda state: has_ice_grapple_logic(True, state, player, options, ability_unlocks))

regions["Fortress Grave Path"].connect(
Expand Down

0 comments on commit f178d43

Please sign in to comment.