Skip to content

Commit

Permalink
Merge 'Remove wallet requirement from Buy Arrows (50)' (#2033)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjohnson57 committed Jul 16, 2023
2 parents 20e2b76 + c66a926 commit d85ff28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def set_shop_rules(world: World):
for location in world.get_filled_locations():
if location.item.type == 'Shop':
# Add wallet requirements
if location.item.name in ['Buy Arrows (50)', 'Buy Fish', 'Buy Goron Tunic', 'Buy Bombchu (20)', 'Buy Bombs (30)']:
if location.item.name in ['Buy Fish', 'Buy Goron Tunic', 'Buy Bombchu (20)', 'Buy Bombs (30)']:
location.add_rule(wallet)
elif location.item.name in ['Buy Zora Tunic', 'Buy Blue Fire']:
location.add_rule(wallet2)
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '7.1.145'
__version__ = '7.1.146'

# This is a supplemental version number for branches based off of main dev.
supplementary_version = 0
Expand Down

0 comments on commit d85ff28

Please sign in to comment.