Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
has_sword -> can_shop on cube cave entrance region
Browse files Browse the repository at this point in the history
ScipioWright authored Aug 14, 2024
1 parent c9b23fb commit 5cf57a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/tunic/er_rules.py
Original file line number Diff line number Diff line change
@@ -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"])

0 comments on commit 5cf57a4

Please sign in to comment.