From 9c612b6c00511226374c1a9be4532892c4177ddd Mon Sep 17 00:00:00 2001 From: aerinon Date: Tue, 23 Aug 2022 16:43:27 -0600 Subject: [PATCH] Minor edit to when pyramid hole auto pre-opens --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index c3312b9a..58a144ad 100644 --- a/Rom.py +++ b/Rom.py @@ -1263,7 +1263,7 @@ def patch_rom(world, rom, player, team, enemized, is_mystery=False): rom.write_bytes(0x50563, [0x3F, 0x14]) # disable below ganon chest rom.write_byte(0x50599, 0x00) # disable below ganon chest rom.write_bytes(0xE9A5, [0x7E, 0x00, 0x24]) # disable below ganon chest - if world.open_pyramid[player] or world.goal[player] == 'trinity': + if world.open_pyramid[player] or (world.goal[player] in ['trinity', 'crystals'] and world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']): rom.initial_sram.pre_open_pyramid_hole() if world.crystals_needed_for_gt[player] == 0: rom.initial_sram.pre_open_ganons_tower()