We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d18e0cb commit c7996b0Copy full SHA for c7996b0
dwrandomizer.py
@@ -469,6 +469,11 @@ def randomize(args):
469
print("Fixing Northern Shrine...")
470
rom.patch_northern_shrine()
471
472
+ if args.searchitems:
473
+ print("Shuffling searchable item locations...")
474
+ flags += "i"
475
+ rom.shuffle_searchables()
476
+
477
if args.chests:
478
print("Shuffling chest contents...")
479
flags += "c"
@@ -494,11 +499,6 @@ def randomize(args):
494
499
flags += "w"
495
500
rom.randomize_shops()
496
501
497
- if args.searchitems:
498
- print("Shuffling searchable item locations...")
- flags += "i"
- rom.shuffle_searchables()
-
502
if args.growth:
503
print("Randomizing player stat growth...")
504
flags += "g"
0 commit comments