Skip to content

Commit c7996b0

Browse files
committed
Fixed a major issue with searchable shuffling.
Fixed an issue where the game could end up with no Flute or Armor (oops).
1 parent d18e0cb commit c7996b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dwrandomizer.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -469,6 +469,11 @@ def randomize(args):
469469
print("Fixing Northern Shrine...")
470470
rom.patch_northern_shrine()
471471

472+
if args.searchitems:
473+
print("Shuffling searchable item locations...")
474+
flags += "i"
475+
rom.shuffle_searchables()
476+
472477
if args.chests:
473478
print("Shuffling chest contents...")
474479
flags += "c"
@@ -494,11 +499,6 @@ def randomize(args):
494499
flags += "w"
495500
rom.randomize_shops()
496501

497-
if args.searchitems:
498-
print("Shuffling searchable item locations...")
499-
flags += "i"
500-
rom.shuffle_searchables()
501-
502502
if args.growth:
503503
print("Randomizing player stat growth...")
504504
flags += "g"

0 commit comments

Comments
 (0)