From ea53f97289f0ad2c3f219ea086c53fd41a242b8e Mon Sep 17 00:00:00 2001 From: aerinon Date: Thu, 19 Dec 2019 16:18:59 -0700 Subject: [PATCH] Removed the sewer dungeon for now to enable Escape Big Key to work. --- Rom.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rom.py b/Rom.py index 2a5416f1..b7672adc 100644 --- a/Rom.py +++ b/Rom.py @@ -534,6 +534,10 @@ def patch_rom(world, player, rom): patch_shuffled_dark_sanc(world, rom, player) # patch doors + if world.doorShuffle == 'crossed': + rom.write_byte(0x151f1, 2) + rom.write_byte(0x15270, 2) + rom.write_byte(0x1597b, 2) for door in world.doors: if door.dest is not None and door.player == player and door.type in [DoorType.Normal, DoorType.SpiralStairs]: rom.write_bytes(door.getAddress(), door.dest.getTarget(door.toggle))