Removed the sewer dungeon for now to enable Escape Big Key to work.

This commit is contained in:
aerinon
2019-12-19 16:18:59 -07:00
parent 35c3a07dc3
commit ea53f97289

4
Rom.py
View File

@@ -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))