Skip to content

Commit 09f7f93

Browse files
ScipioWrightwu4
authored andcommitted
TUNIC: Add ice grapple logic to get to gauntlet (ArchipelagoMW#3459)
1 parent b0119e9 commit 09f7f93

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

worlds/tunic/rules.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,9 @@ def set_location_rules(world: "TunicWorld", ability_unlocks: Dict[str, int]) ->
312312

313313
# Swamp
314314
set_rule(multiworld.get_location("Cathedral Gauntlet - Gauntlet Reward", player),
315-
lambda state: state.has(laurels, player) and state.has(fire_wand, player) and has_sword(state, player))
315+
lambda state: (state.has(fire_wand, player) and has_sword(state, player))
316+
and (state.has(laurels, player)
317+
or has_ice_grapple_logic(False, state, player, options, ability_unlocks)))
316318
set_rule(multiworld.get_location("Swamp - [Entrance] Above Entryway", player),
317319
lambda state: state.has(laurels, player))
318320
set_rule(multiworld.get_location("Swamp - [South Graveyard] Upper Walkway Dash Chest", player),

0 commit comments

Comments
 (0)