Skip to content

Commit

Permalink
Fixed a major issue with searchable shuffling.
Browse files Browse the repository at this point in the history
Fixed an issue where the game could end up with no Flute or Armor (oops).
  • Loading branch information
mcgrew committed Dec 23, 2015
1 parent d18e0cb commit c7996b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dwrandomizer.py
Expand Up @@ -469,6 +469,11 @@ def randomize(args):
print("Fixing Northern Shrine...")
rom.patch_northern_shrine()

if args.searchitems:
print("Shuffling searchable item locations...")
flags += "i"
rom.shuffle_searchables()

if args.chests:
print("Shuffling chest contents...")
flags += "c"
Expand All @@ -494,11 +499,6 @@ def randomize(args):
flags += "w"
rom.randomize_shops()

if args.searchitems:
print("Shuffling searchable item locations...")
flags += "i"
rom.shuffle_searchables()

if args.growth:
print("Randomizing player stat growth...")
flags += "g"
Expand Down

0 comments on commit c7996b0

Please sign in to comment.