From 4b8bbe6c4fc1e32fe1d0ab37b6802c1a0825a0e1 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Wed, 29 May 2024 19:36:33 -0500 Subject: [PATCH] Fix issue with dungeon counts not correct in Prize Shuffle --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index a525e934..f7c91289 100644 --- a/Rom.py +++ b/Rom.py @@ -729,7 +729,7 @@ def patch_rom(world, rom, player, team, is_mystery=False): # fix hc big key problems (map and compass too) if (world.doorShuffle[player] != 'vanilla' or world.dropshuffle[player] != 'none' - or world.pottery[player] not in ['none', 'cave']): + or world.pottery[player] not in ['none', 'cave'] or world.prizeshuffle[player] != 'none'): rom.write_byte(0x151f1, 2) rom.write_byte(0x15270, 2) sanctuary = world.get_region('Sanctuary', player)