From 054aa84270db9d8bbf36f9d9447955df8259fbbb Mon Sep 17 00:00:00 2001 From: codemann8 Date: Wed, 19 Jan 2022 00:42:02 -0600 Subject: [PATCH] Fixed start as bunny for Bomb Shop --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 78f6d2a2..a6a6dfa9 100644 --- a/Rom.py +++ b/Rom.py @@ -818,7 +818,7 @@ def patch_rom(world, rom, player, team, enemized, is_mystery=False): lh_name = 'Big Bomb Shop' links_house = world.get_region(lh_name, player) if should_be_bunny(links_house, world.mode[player]): - rom.write_bytes(0x13fff0, [0x04, 0x01]) + rom.write_bytes(0x13fff0, [0x04 if lh_name == 'Links House' else 0x1C, 0x01]) old_man_house = world.get_region('Old Man House', player) if should_be_bunny(old_man_house, world.mode[player]):