From 112bfe0933742e45c5c423e303235a9b8a433440 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Fri, 10 Jan 2025 16:48:15 -0500 Subject: [PATCH] TUNIC: Logic for Beneath the Vault Bridge Switch #4432 --- worlds/tunic/er_rules.py | 2 +- worlds/tunic/rules.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/tunic/er_rules.py b/worlds/tunic/er_rules.py index 6e9ae551..f7568df8 100644 --- a/worlds/tunic/er_rules.py +++ b/worlds/tunic/er_rules.py @@ -1675,7 +1675,7 @@ def set_er_location_rules(world: "TunicWorld") -> None: # Beneath the Vault set_rule(world.get_location("Beneath the Fortress - Bridge"), - lambda state: has_melee(state, player) or state.has_any({laurels, fire_wand}, player)) + lambda state: has_melee(state, player) or state.has_any((laurels, fire_wand, ice_dagger, gun), player)) # Quarry set_rule(world.get_location("Quarry - [Central] Above Ladder Dash Chest"), diff --git a/worlds/tunic/rules.py b/worlds/tunic/rules.py index 30b7cee9..95937678 100644 --- a/worlds/tunic/rules.py +++ b/worlds/tunic/rules.py @@ -323,7 +323,7 @@ def set_location_rules(world: "TunicWorld") -> None: # Beneath the Vault set_rule(world.get_location("Beneath the Fortress - Bridge"), - lambda state: has_melee(state, player) or state.has_any({laurels, fire_wand}, player)) + lambda state: has_melee(state, player) or state.has_any((laurels, fire_wand, ice_dagger, gun), player)) set_rule(world.get_location("Beneath the Fortress - Obscured Behind Waterfall"), lambda state: has_melee(state, player) and has_lantern(state, world))