From c7996b0f29c2695725d8af540eb255e8d66d66e1 Mon Sep 17 00:00:00 2001 From: Thomas McGrew Date: Tue, 22 Dec 2015 22:03:19 -0500 Subject: [PATCH] Fixed a major issue with searchable shuffling. Fixed an issue where the game could end up with no Flute or Armor (oops). --- dwrandomizer.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dwrandomizer.py b/dwrandomizer.py index 6221ca6..330c571 100755 --- a/dwrandomizer.py +++ b/dwrandomizer.py @@ -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" @@ -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"