From 60c4ebf4d548476e2c601448aa99907eb5ed5531 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 17 Feb 2018 18:15:51 -0500 Subject: [PATCH] Fix GT exit offset code --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index b99d9aac..358150af 100644 --- a/Rom.py +++ b/Rom.py @@ -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)