From 39a07a062475303a414e09291c3469834c7c7273 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 07:15:11 +0100 Subject: [PATCH] Rom: dont block HC exit in standard with vanilla entrances to match website mystery behavior --- Rom.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index ec71854c..5db57484 100644 --- a/Rom.py +++ b/Rom.py @@ -1097,7 +1097,9 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x18005E, world.crystals_needed_for_gt[player]) rom.write_byte(0x18005F, world.crystals_needed_for_ganon[player]) - rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode + + # block HC upstairs doors in rain state in standard mode + rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" and world.shuffle[player] != 'vanilla' else 0x00) rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle[player] else 0x00) | (0x02 if world.compassshuffle[player] else 0x00)