TUNIC: Fix duplicate entrance name in ER (#2818)
This commit is contained in:
parent
e5980ac5f5
commit
f178d438b8
|
@ -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
|
# nmg: ice grapple through the big gold door, can do it both ways
|
||||||
regions["Eastern Vault Fortress"].connect(
|
regions["Eastern Vault Fortress"].connect(
|
||||||
connecting_region=regions["Eastern Vault Fortress Gold Door"],
|
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",
|
rule=lambda state: state.has_all({"Activate Eastern Vault West Fuses",
|
||||||
"Activate Eastern Vault East Fuse"}, player)
|
"Activate Eastern Vault East Fuse"}, player)
|
||||||
or has_ice_grapple_logic(False, state, player, options, ability_unlocks))
|
or has_ice_grapple_logic(False, state, player, options, ability_unlocks))
|
||||||
regions["Eastern Vault Fortress Gold Door"].connect(
|
regions["Eastern Vault Fortress Gold Door"].connect(
|
||||||
connecting_region=regions["Eastern Vault Fortress"],
|
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))
|
rule=lambda state: has_ice_grapple_logic(True, state, player, options, ability_unlocks))
|
||||||
|
|
||||||
regions["Fortress Grave Path"].connect(
|
regions["Fortress Grave Path"].connect(
|
||||||
|
|
Loading…
Reference in New Issue