Fix GT exit offset code

This commit is contained in:
Kevin Cathcart 2018-02-17 18:15:51 -05:00
parent 5e743e1c33
commit 60c4ebf4d5
1 changed files with 1 additions and 1 deletions

2
Rom.py
View File

@ -328,7 +328,7 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None):
elif room_id == 0x00d6 and world.fix_trock_exit:
rom.write_int16_to_rom(0x15DB5 + 2 * offset, 0x0134)
elif room_id == 0x000c and world.fix_gtower_exit: # fix ganons tower exit point
rom.write_byte(0x15DB5 + 2 * offset, 0x00A4)
rom.write_int16_to_rom(0x15DB5 + 2 * offset, 0x00A4)
else:
rom.write_int16_to_rom(0x15DB5 + 2 * offset, link_y)