From 368fa649148d62ab9875cb63ac4e8eff252eefc9 Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Fri, 29 Sep 2023 11:18:43 -0700 Subject: [PATCH] LttP: Update credits text for GT Big Key when key drop shuffle is on. (#2235) --- worlds/alttp/Rom.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/worlds/alttp/Rom.py b/worlds/alttp/Rom.py index ef4f9435..47cea8c2 100644 --- a/worlds/alttp/Rom.py +++ b/worlds/alttp/Rom.py @@ -925,6 +925,10 @@ def patch_rom(world: MultiWorld, rom: LocalRom, player: int, enemized: bool): rom.write_byte(0x18700B, 10) # Thieves Town rom.write_byte(0x18700C, 14) # Turtle Rock rom.write_byte(0x18700D, 31) # Ganons Tower + # update credits GT Big Key counter + gt_bigkey_top, gt_bigkey_bottom = credits_digit(5) + rom.write_byte(0x118B6A, gt_bigkey_top) + rom.write_byte(0x118B88, gt_bigkey_bottom)