mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-30 06:43:32 -07:00
Fix merge conflict
This commit is contained in:
@@ -132,10 +132,11 @@ def set_region_rules(world: "TunicWorld") -> None:
|
||||
lambda state: (state.has(laurels, player) and has_ability(prayer, state, world)) \
|
||||
or has_ice_grapple_logic(False, IceGrappling.option_medium, state, world)
|
||||
multiworld.get_entrance("Overworld -> Spirit Arena", player).access_rule = \
|
||||
lambda state: (state.has(gold_hexagon, player, options.hexagon_goal.value) if options.hexagon_quest.value
|
||||
else state.has_all({red_hexagon, green_hexagon, blue_hexagon}, player) and state.has_group_unique("Hero Relics", player, 6)) and \
|
||||
has_ability(state, player, prayer, options, ability_unlocks) and has_sword(state, player) and \
|
||||
state.has_any({lantern, laurels}, player)
|
||||
lambda state: ((state.has(gold_hexagon, player, options.hexagon_goal.value) if options.hexagon_quest.value
|
||||
else state.has_all({red_hexagon, green_hexagon, blue_hexagon}, player)
|
||||
and state.has_group_unique("Hero Relics", player, 6))
|
||||
and has_ability(prayer, state, world) and has_sword(state, player)
|
||||
and state.has_any({lantern, laurels}, player))
|
||||
|
||||
world.get_region("Quarry").connect(world.get_region("Rooted Ziggurat"),
|
||||
rule=lambda state: has_ice_grapple_logic(True, IceGrappling.option_hard, state, world)
|
||||
|
||||
Reference in New Issue
Block a user