From 5cf57a40186d0c81ea4592ea98619dc898c52c76 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Wed, 14 Aug 2024 09:25:04 -0400 Subject: [PATCH] has_sword -> can_shop on cube cave entrance region --- worlds/tunic/er_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/tunic/er_rules.py b/worlds/tunic/er_rules.py index fbe63fafab00..3d1973beb375 100644 --- a/worlds/tunic/er_rules.py +++ b/worlds/tunic/er_rules.py @@ -337,7 +337,7 @@ def set_er_region_rules(world: "TunicWorld", regions: Dict[str, Region], portal_ regions["Overworld"].connect( connecting_region=regions["Cube Cave Entrance Region"], - rule=lambda state: state.has(gun, player) or has_sword(state, player)) + rule=lambda state: state.has(gun, player) or can_shop(state, world)) regions["Cube Cave Entrance Region"].connect( connecting_region=regions["Overworld"])